Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(533)

Side by Side Diff: tracing/tracing/extras/chrome/chrome_user_friendly_category_driver.html

Issue 3009553002: Refactor Histogram relationship diagnostics. (Closed)
Patch Set: Created 3 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <!-- 2 <!--
3 Copyright (c) 2015 The Chromium Authors. All rights reserved. 3 Copyright (c) 2015 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file. 5 found in the LICENSE file.
6 --> 6 -->
7 7
8 <link rel="import" href="/tracing/base/event.html"> 8 <link rel="import" href="/tracing/base/event.html">
9 <link rel="import" href="/tracing/base/sinebow_color_generator.html"> 9 <link rel="import" href="/tracing/base/sinebow_color_generator.html">
10 <link rel="import" href="/tracing/base/utils.html"> 10 <link rel="import" href="/tracing/base/utils.html">
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 'ImageFrameGenerator::decodeAndScale' 46 'ImageFrameGenerator::decodeAndScale'
47 ], 47 ],
48 48
49 input: [ 49 input: [
50 'HitTest', 50 'HitTest',
51 'ScrollableArea::scrollPositionChanged', 51 'ScrollableArea::scrollPositionChanged',
52 'EventHandler::handleMouseMoveEvent' 52 'EventHandler::handleMouseMoveEvent'
53 ], 53 ],
54 54
55 layout: [ 55 layout: [
56 'LocalFrameView::invalidateTree',
57 'LocalFrameView::layout',
58 'LocalFrameView::performLayout',
59 'LocalFrameView::performPostLayoutTasks',
60 'LocalFrameView::performPreLayoutTasks',
56 'FrameView::invalidateTree', 61 'FrameView::invalidateTree',
57 'FrameView::layout', 62 'FrameView::layout',
58 'FrameView::performLayout', 63 'FrameView::performLayout',
59 'FrameView::performPostLayoutTasks', 64 'FrameView::performPostLayoutTasks',
60 'FrameView::performPreLayoutTasks', 65 'FrameView::performPreLayoutTasks',
61 'Layer::updateLayerPositionsAfterLayout', 66 'Layer::updateLayerPositionsAfterLayout',
62 'Layout', 67 'Layout',
63 'LayoutView::hitTest', 68 'LayoutView::hitTest',
64 'ResourceLoadPriorityOptimizer::updateAllImageResourcePriorities', 69 'ResourceLoadPriorityOptimizer::updateAllImageResourcePriorities',
65 'WebViewImpl::layout' 70 'WebViewImpl::layout'
66 ], 71 ],
67 72
68 parseHTML: [ 73 parseHTML: [
69 'ParseHTML', 74 'BackgroundHTMLParser::pumpTokenizer',
75 'BackgroundHTMLParser::sendTokensToMainThread',
70 'HTMLDocumentParser::didReceiveParsedChunkFromBackgroundParser', 76 'HTMLDocumentParser::didReceiveParsedChunkFromBackgroundParser',
71 'HTMLDocumentParser::processParsedChunkFromBackgroundParser', 77 'HTMLDocumentParser::processParsedChunkFromBackgroundParser',
72 'HTMLDocumentParser::processTokenizedChunkFromBackgroundParser', 78 'HTMLDocumentParser::processTokenizedChunkFromBackgroundParser',
79 'ParseHTML',
73 ], 80 ],
74 81
75 raster: [ 82 raster: [
76 'DisplayListRasterSource::PerformSolidColorAnalysis', 83 'DisplayListRasterSource::PerformSolidColorAnalysis',
77 'Picture::Raster', 84 'Picture::Raster',
78 'RasterBufferImpl::Playback', 85 'RasterBufferImpl::Playback',
79 'RasterTask', 86 'RasterTask',
80 'RasterizerTaskImpl::RunOnWorkerThread', 87 'RasterizerTaskImpl::RunOnWorkerThread',
81 'SkCanvas::drawImageRect()', 88 'SkCanvas::drawImageRect()',
82 'SkCanvas::drawPicture()', 89 'SkCanvas::drawPicture()',
(...skipping 18 matching lines...) Expand all
101 'Document::updateStyleInvalidationIfNeeded', 108 'Document::updateStyleInvalidationIfNeeded',
102 'ParseAuthorStyleSheet', 109 'ParseAuthorStyleSheet',
103 'RuleSet::addRulesFromSheet', 110 'RuleSet::addRulesFromSheet',
104 'StyleElement::processStyleSheet', 111 'StyleElement::processStyleSheet',
105 'StyleEngine::createResolver', 112 'StyleEngine::createResolver',
106 'StyleSheetContents::parseAuthorStyleSheet', 113 'StyleSheetContents::parseAuthorStyleSheet',
107 'UpdateLayoutTree' 114 'UpdateLayoutTree'
108 ], 115 ],
109 116
110 script_parse_and_compile: [ 117 script_parse_and_compile: [
118 'V8.CompileFullCode',
119 'V8.Parse',
120 'V8.ParseLazy',
121 'V8.RecompileSynchronous',
122 'V8.ScriptCompiler',
111 'v8.parseOnBackground', 123 'v8.parseOnBackground',
112 'V8.ScriptCompiler'
113 ], 124 ],
114 125
115 script_execute: [ 126 script_execute: [
116 'V8.Execute', 127 'V8.Execute',
117 'WindowProxy::initialize' 128 'WindowProxy::initialize'
118 ], 129 ],
119 130
120 resource_loading: [ 131 resource_loading: [
132 'Resource::appendData',
133 'ResourceDispatcher::OnReceivedData',
134 'ResourceDispatcher::OnReceivedResponse',
135 'ResourceDispatcher::OnRequestComplete',
121 'ResourceFetcher::requestResource', 136 'ResourceFetcher::requestResource',
122 'ResourceDispatcher::OnReceivedData', 137 'WebURLLoaderImpl::Context::OnCompletedRequest',
123 'ResourceDispatcher::OnRequestComplete', 138 'WebURLLoaderImpl::Context::OnReceivedData',
124 'ResourceDispatcher::OnReceivedResponse', 139 'WebURLLoaderImpl::Context::OnReceivedResponse',
125 'Resource::appendData' 140 'WebURLLoaderImpl::Context::Start',
141 'WebURLLoaderImpl::Context::Cancel',
142 'WebURLLoaderImpl::loadAsynchronously',
126 ], 143 ],
127 144
128 // Where do these go? 145 // Where do these go?
129 renderer_misc: [ 146 renderer_misc: [
130 'DecodeFont', 147 'DecodeFont',
131 'ThreadState::completeSweep' // blink_gc 148 'ThreadState::completeSweep' // blink_gc
132 ], 149 ],
133 150
134 // TODO(fmeawad): https://github.com/catapult-project/catapult/issues/2572 151 // TODO(fmeawad): https://github.com/catapult-project/catapult/issues/2572
135 v8_runtime: [ 152 v8_runtime: [
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
207 // order. 224 // order.
208 for (const category of ChromeUserFriendlyCategoryDriver.ALL_TITLES) { 225 for (const category of ChromeUserFriendlyCategoryDriver.ALL_TITLES) {
209 ChromeUserFriendlyCategoryDriver.getColor(category); 226 ChromeUserFriendlyCategoryDriver.getColor(category);
210 } 227 }
211 228
212 return { 229 return {
213 ChromeUserFriendlyCategoryDriver, 230 ChromeUserFriendlyCategoryDriver,
214 }; 231 };
215 }); 232 });
216 </script> 233 </script>
OLDNEW
« no previous file with comments | « tracing/trace_viewer.gypi ('k') | tracing/tracing/metrics/system_health/expected_queueing_time_metric.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698