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

Issue 2776653002: [ESLint] Fix violations when enabling curly rule in eslint. (Closed)

Created:
3 years, 9 months ago by lpy
Modified:
3 years, 9 months ago
CC:
catapult-reviews_chromium.org, perf-dashboard-reviews_chromium.org, tracing-review_chromium.org
Target Ref:
refs/heads/master
Project:
catapult
Visibility:
Public.

Description

[ESLint] Fix violations when enabling curly rule in eslint. curly rule enabled: "curly": ["error", "multi-line", "consistent"] The --fix option in eslint converts code from: if (a < b) return true; to: if (a < b) {return true;} which is not right for our codebase. Eventually we want code like: if (a < b) return true; if it can fit in one line. This patch will need a follow-up patch to clean up code from: if (a < b) { return true; } to: if (a < b) return true; BUG=catapult:#3322 Review-Url: https://codereview.chromium.org/2776653002 Committed: https://chromium.googlesource.com/external/github.com/catapult-project/catapult/+/da45b1a5fb8ba558ac13173813beb6b88b84328d

Patch Set 1 #

Patch Set 2 : Fix test #

Total comments: 1

Patch Set 3 : rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+5119 lines, -4175 lines) Patch
M dashboard/dashboard/elements/alerts-table.html View 1 2 9 chunks +16 lines, -18 lines 0 comments Download
M dashboard/dashboard/elements/bug-info-span.html View 1 2 1 chunk +3 lines, -6 lines 0 comments Download
M dashboard/dashboard/elements/chart-container.html View 1 2 3 chunks +10 lines, -5 lines 0 comments Download
M dashboard/dashboard/elements/chart-tooltip.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M dashboard/dashboard/elements/test-picker.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M dashboard/dashboard/pinpoint/elements/jobs-page.html View 1 2 1 chunk +4 lines, -2 lines 0 comments Download
M dashboard/dashboard/pinpoint/elements/jobs-table.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M dashboard/dashboard/pinpoint/index/index.html View 1 2 1 chunk +4 lines, -2 lines 0 comments Download
M tracing/tracing/base/base.html View 1 2 4 chunks +7 lines, -8 lines 0 comments Download
M tracing/tracing/base/base64.html View 1 2 3 chunks +9 lines, -12 lines 0 comments Download
M tracing/tracing/base/base64_test.html View 1 2 1 chunk +4 lines, -2 lines 0 comments Download
M tracing/tracing/base/category_util.html View 1 2 1 chunk +1 line, -2 lines 0 comments Download
M tracing/tracing/base/color.html View 1 2 6 chunks +16 lines, -11 lines 0 comments Download
M tracing/tracing/base/color_scheme.html View 1 2 2 chunks +4 lines, -2 lines 0 comments Download
M tracing/tracing/base/event_target.html View 1 2 7 chunks +18 lines, -19 lines 0 comments Download
M tracing/tracing/base/extension_registry.html View 1 2 2 chunks +4 lines, -2 lines 0 comments Download
M tracing/tracing/base/extension_registry_base.html View 1 2 6 chunks +13 lines, -8 lines 0 comments Download
M tracing/tracing/base/extension_registry_basic.html View 1 2 4 chunks +19 lines, -11 lines 0 comments Download
M tracing/tracing/base/extension_registry_type_based.html View 1 2 5 chunks +11 lines, -10 lines 0 comments Download
M tracing/tracing/base/guid.html View 1 2 1 chunk +1 line, -2 lines 0 comments Download
M tracing/tracing/base/headless_tests.html View 1 2 3 chunks +9 lines, -6 lines 0 comments Download
M tracing/tracing/base/in_memory_trace_stream.html View 1 2 2 chunks +4 lines, -2 lines 0 comments Download
M tracing/tracing/base/interval_tree.html View 1 2 10 chunks +28 lines, -27 lines 0 comments Download
M tracing/tracing/base/interval_tree_test.html View 1 2 3 chunks +4 lines, -5 lines 0 comments Download
M tracing/tracing/base/iteration_helpers.html View 1 2 13 chunks +43 lines, -37 lines 0 comments Download
M tracing/tracing/base/math/bbox2.html View 1 2 2 chunks +12 lines, -12 lines 0 comments Download
M tracing/tracing/base/math/math.html View 1 2 3 chunks +3 lines, -6 lines 0 comments Download
M tracing/tracing/base/math/piecewise_linear_function.html View 1 2 4 chunks +14 lines, -15 lines 0 comments Download
M tracing/tracing/base/math/quad.html View 1 2 2 chunks +4 lines, -2 lines 0 comments Download
M tracing/tracing/base/math/quad_test.html View 1 2 1 chunk +1 line, -2 lines 0 comments Download
M tracing/tracing/base/math/range.html View 1 2 9 chunks +27 lines, -50 lines 0 comments Download
M tracing/tracing/base/math/range_utils.html View 1 2 3 chunks +5 lines, -10 lines 0 comments Download
M tracing/tracing/base/math/rect.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/base/math/running_statistics.html View 1 2 3 chunks +8 lines, -12 lines 0 comments Download
M tracing/tracing/base/math/sorted_array_utils.html View 1 2 8 chunks +31 lines, -31 lines 0 comments Download
M tracing/tracing/base/math/statistics.html View 1 2 14 chunks +32 lines, -39 lines 0 comments Download
M tracing/tracing/base/math/statistics_test.html View 1 2 2 chunks +6 lines, -3 lines 0 comments Download
M tracing/tracing/base/multi_dimensional_view.html View 1 2 13 chunks +42 lines, -26 lines 0 comments Download
M tracing/tracing/base/multi_dimensional_view_test.html View 1 2 6 chunks +14 lines, -7 lines 0 comments Download
M tracing/tracing/base/raf.html View 1 2 7 chunks +16 lines, -22 lines 0 comments Download
M tracing/tracing/base/raf_test.html View 1 2 1 chunk +1 line, -2 lines 0 comments Download
M tracing/tracing/base/settings.html View 1 2 6 chunks +19 lines, -10 lines 0 comments Download
M tracing/tracing/base/sinebow_color_generator.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/base/task.html View 1 2 7 chunks +25 lines, -17 lines 0 comments Download
M tracing/tracing/base/task_test.html View 1 2 4 chunks +4 lines, -8 lines 0 comments Download
M tracing/tracing/base/timing.html View 1 2 2 chunks +8 lines, -4 lines 0 comments Download
M tracing/tracing/base/timing_test.html View 1 2 5 chunks +14 lines, -12 lines 0 comments Download
M tracing/tracing/base/unit.html View 1 2 3 chunks +7 lines, -8 lines 0 comments Download
M tracing/tracing/base/unit_scale.html View 1 2 2 chunks +4 lines, -2 lines 0 comments Download
M tracing/tracing/base/unittest.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/base/unittest/html_test_results.html View 1 2 8 chunks +22 lines, -12 lines 0 comments Download
M tracing/tracing/base/unittest/interactive_test_runner.html View 1 2 15 chunks +46 lines, -41 lines 0 comments Download
M tracing/tracing/base/unittest/suite_loader.html View 1 2 7 chunks +20 lines, -16 lines 0 comments Download
M tracing/tracing/base/unittest/test_case.html View 1 2 4 chunks +13 lines, -7 lines 0 comments Download
M tracing/tracing/base/unittest/test_runner.html View 1 2 5 chunks +9 lines, -6 lines 0 comments Download
M tracing/tracing/base/unittest/test_suite.html View 1 2 5 chunks +14 lines, -7 lines 0 comments Download
M tracing/tracing/base/unittest/text_test_results.html View 1 2 4 chunks +8 lines, -8 lines 0 comments Download
M tracing/tracing/base/utils.html View 1 2 1 chunk +8 lines, -10 lines 0 comments Download
M tracing/tracing/base/xhr.html View 1 2 7 chunks +20 lines, -22 lines 0 comments Download
M tracing/tracing/core/filter.html View 1 2 3 chunks +10 lines, -11 lines 0 comments Download
M tracing/tracing/core/scripting_controller.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/core/test_utils.html View 1 2 20 chunks +62 lines, -50 lines 0 comments Download
M tracing/tracing/extras/ads/domain_category.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/extras/android/android_auditor.html View 1 2 21 chunks +68 lines, -59 lines 0 comments Download
M tracing/tracing/extras/chrome/blame_context/blame_context.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/extras/chrome/blame_context/frame_tree_node.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/extras/chrome/blame_context/render_frame.html View 1 2 1 chunk +5 lines, -2 lines 0 comments Download
M tracing/tracing/extras/chrome/cc/input_latency_async_slice.html View 1 2 21 chunks +72 lines, -61 lines 0 comments Download
M tracing/tracing/extras/chrome/cc/layer_impl.html View 1 2 3 chunks +18 lines, -9 lines 0 comments Download
M tracing/tracing/extras/chrome/cc/layer_tree_host_impl.html View 1 2 7 chunks +21 lines, -14 lines 0 comments Download
M tracing/tracing/extras/chrome/cc/layer_tree_impl.html View 1 2 5 chunks +29 lines, -20 lines 0 comments Download
M tracing/tracing/extras/chrome/cc/picture.html View 1 2 11 chunks +54 lines, -27 lines 0 comments Download
M tracing/tracing/extras/chrome/cc/picture_as_image_data.html View 1 2 1 chunk +1 line, -2 lines 0 comments Download
M tracing/tracing/extras/chrome/cc/picture_test.html View 1 2 1 chunk +1 line, -2 lines 0 comments Download
M tracing/tracing/extras/chrome/cc/raster_task.html View 1 2 1 chunk +9 lines, -8 lines 0 comments Download
M tracing/tracing/extras/chrome/cc/region.html View 1 2 3 chunks +4 lines, -5 lines 0 comments Download
M tracing/tracing/extras/chrome/cc/tile.html View 1 2 1 chunk +11 lines, -8 lines 0 comments Download
M tracing/tracing/extras/chrome/cc/util.html View 1 2 5 chunks +16 lines, -11 lines 0 comments Download
M tracing/tracing/extras/chrome/chrome_auditor.html View 1 2 2 chunks +4 lines, -5 lines 0 comments Download
M tracing/tracing/extras/chrome/chrome_user_friendly_category_driver.html View 1 2 4 chunks +7 lines, -5 lines 0 comments Download
M tracing/tracing/extras/chrome/estimated_input_latency.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/extras/chrome/gpu/gpu_async_slice.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/extras/chrome/gpu/state.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/extras/chrome/layout_object.html View 1 2 4 chunks +13 lines, -11 lines 0 comments Download
M tracing/tracing/extras/chrome/slice_title_fixer.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/extras/importer/android/event_log_importer.html View 1 2 7 chunks +15 lines, -12 lines 0 comments Download
M tracing/tracing/extras/importer/battor_importer.html View 1 2 3 chunks +6 lines, -6 lines 0 comments Download
M tracing/tracing/extras/importer/etw/etw_importer.html View 1 2 13 chunks +29 lines, -25 lines 0 comments Download
M tracing/tracing/extras/importer/etw/etw_importer_test.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/extras/importer/etw/eventtrace_parser.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/extras/importer/etw/process_parser.html View 1 2 4 chunks +18 lines, -9 lines 0 comments Download
M tracing/tracing/extras/importer/etw/thread_parser.html View 1 2 4 chunks +10 lines, -6 lines 0 comments Download
M tracing/tracing/extras/importer/gcloud_trace/gcloud_trace_importer.html View 1 2 1 chunk +3 lines, -3 lines 0 comments Download
M tracing/tracing/extras/importer/gzip_importer.html View 1 2 6 chunks +17 lines, -14 lines 0 comments Download
M tracing/tracing/extras/importer/gzip_importer_test.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/extras/importer/linux_perf/android_parser.html View 1 2 5 chunks +7 lines, -8 lines 0 comments Download
M tracing/tracing/extras/importer/linux_perf/binder_parser.html View 1 2 13 chunks +33 lines, -29 lines 0 comments Download
M tracing/tracing/extras/importer/linux_perf/disk_parser.html View 1 2 10 chunks +10 lines, -20 lines 0 comments Download
M tracing/tracing/extras/importer/linux_perf/drm_parser.html View 1 2 1 chunk +1 line, -2 lines 0 comments Download
M tracing/tracing/extras/importer/linux_perf/exynos_parser.html View 1 2 4 chunks +5 lines, -7 lines 0 comments Download
M tracing/tracing/extras/importer/linux_perf/ftrace_importer.html View 1 2 14 chunks +66 lines, -48 lines 0 comments Download
M tracing/tracing/extras/importer/linux_perf/i2c_parser.html View 1 2 4 chunks +4 lines, -8 lines 0 comments Download
M tracing/tracing/extras/importer/linux_perf/i915_parser.html View 1 2 12 chunks +16 lines, -28 lines 0 comments Download
M tracing/tracing/extras/importer/linux_perf/irq_parser.html View 1 2 5 chunks +5 lines, -10 lines 0 comments Download
M tracing/tracing/extras/importer/linux_perf/kfunc_parser.html View 1 2 1 chunk +1 line, -2 lines 0 comments Download
M tracing/tracing/extras/importer/linux_perf/mali_parser.html View 1 2 6 chunks +9 lines, -12 lines 0 comments Download
M tracing/tracing/extras/importer/linux_perf/memreclaim_parser.html View 1 2 3 chunks +3 lines, -6 lines 0 comments Download
M tracing/tracing/extras/importer/linux_perf/power_parser.html View 1 2 6 chunks +9 lines, -12 lines 0 comments Download
M tracing/tracing/extras/importer/linux_perf/regulator_parser.html View 1 2 3 chunks +3 lines, -6 lines 0 comments Download
M tracing/tracing/extras/importer/linux_perf/sched_parser.html View 1 2 5 chunks +9 lines, -11 lines 0 comments Download
M tracing/tracing/extras/importer/linux_perf/sync_parser.html View 1 2 2 chunks +3 lines, -6 lines 0 comments Download
M tracing/tracing/extras/importer/linux_perf/workqueue_parser.html View 1 2 2 chunks +2 lines, -4 lines 0 comments Download
M tracing/tracing/extras/importer/trace2html_importer.html View 1 2 2 chunks +5 lines, -7 lines 0 comments Download
M tracing/tracing/extras/importer/trace2html_importer_test.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/extras/importer/trace_code_map.html View 1 2 4 chunks +6 lines, -9 lines 0 comments Download
M tracing/tracing/extras/importer/trace_event_importer.html View 1 2 66 chunks +180 lines, -149 lines 0 comments Download
M tracing/tracing/extras/importer/trace_event_importer_perf_test.html View 1 2 1 chunk +6 lines, -3 lines 0 comments Download
M tracing/tracing/extras/importer/trace_event_importer_test.html View 1 2 4 chunks +8 lines, -4 lines 0 comments Download
M tracing/tracing/extras/importer/v8/codemap.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/extras/importer/v8/splaytree.html View 1 2 6 chunks +14 lines, -16 lines 0 comments Download
M tracing/tracing/extras/importer/v8/v8_log_importer.html View 1 2 4 chunks +9 lines, -5 lines 0 comments Download
M tracing/tracing/extras/importer/zip_importer.html View 1 2 3 chunks +8 lines, -5 lines 0 comments Download
M tracing/tracing/extras/net/net_async_slice.html View 1 2 3 chunks +8 lines, -4 lines 0 comments Download
M tracing/tracing/extras/system_stats/system_stats_snapshot.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/extras/tquery/filter.html View 1 2 1 chunk +3 lines, -2 lines 0 comments Download
M tracing/tracing/extras/tquery/filter_all_of.html View 1 2 1 chunk +3 lines, -3 lines 0 comments Download
M tracing/tracing/extras/tquery/filter_any_of.html View 1 2 1 chunk +2 lines, -4 lines 0 comments Download
M tracing/tracing/extras/tquery/filter_has_ancestor.html View 1 2 1 chunk +3 lines, -3 lines 0 comments Download
M tracing/tracing/extras/tquery/filter_has_duration.html View 1 2 1 chunk +1 line, -2 lines 0 comments Download
M tracing/tracing/extras/tquery/filter_is_top_level.html View 1 2 1 chunk +2 lines, -4 lines 0 comments Download
M tracing/tracing/extras/tquery/filter_not.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/extras/tquery/tquery.html View 1 2 4 chunks +7 lines, -8 lines 0 comments Download
M tracing/tracing/extras/tquery/tquery_test.html View 1 2 3 chunks +8 lines, -4 lines 0 comments Download
M tracing/tracing/extras/vsync/vsync_auditor.html View 1 2 2 chunks +10 lines, -10 lines 0 comments Download
M tracing/tracing/extras/vsync/vsync_auditor_test.html View 1 2 2 chunks +4 lines, -2 lines 0 comments Download
M tracing/tracing/importer/context_processor.html View 1 2 6 chunks +18 lines, -10 lines 0 comments Download
M tracing/tracing/importer/empty_importer.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/importer/find_input_expectations.html View 1 2 17 chunks +58 lines, -49 lines 0 comments Download
M tracing/tracing/importer/find_load_expectations.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/importer/find_startup_expectations.html View 1 2 2 chunks +7 lines, -8 lines 0 comments Download
M tracing/tracing/importer/import.html View 1 2 5 chunks +9 lines, -6 lines 0 comments Download
M tracing/tracing/importer/importer.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/importer/proto_expectation.html View 1 2 4 chunks +9 lines, -6 lines 0 comments Download
M tracing/tracing/importer/simple_line_reader.html View 1 2 1 chunk +3 lines, -3 lines 0 comments Download
M tracing/tracing/metrics/blink/gc_metric.html View 1 2 1 chunk +3 lines, -2 lines 0 comments Download
M tracing/tracing/metrics/compare_samples_cmdline.html View 1 2 10 chunks +32 lines, -22 lines 0 comments Download
M tracing/tracing/metrics/cpu_process_metric.html View 1 2 4 chunks +12 lines, -7 lines 0 comments Download
M tracing/tracing/metrics/discover_cmdline.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/metrics/metric_map_function.html View 1 2 1 chunk +6 lines, -3 lines 0 comments Download
M tracing/tracing/metrics/system_health/clock_sync_latency_metric_test.html View 1 2 1 chunk +4 lines, -3 lines 0 comments Download
M tracing/tracing/metrics/system_health/cpu_time_metric.html View 1 2 1 chunk +2 lines, -4 lines 0 comments Download
M tracing/tracing/metrics/system_health/loading_metric.html View 1 2 4 chunks +12 lines, -6 lines 0 comments Download
M tracing/tracing/metrics/system_health/long_tasks_metric.html View 1 2 2 chunks +5 lines, -5 lines 0 comments Download
M tracing/tracing/metrics/system_health/memory_metric.html View 1 2 13 chunks +31 lines, -25 lines 0 comments Download
M tracing/tracing/metrics/system_health/memory_metric_test.html View 1 2 3 chunks +6 lines, -3 lines 0 comments Download
M tracing/tracing/metrics/system_health/power_metric.html View 1 2 2 chunks +6 lines, -3 lines 0 comments Download
M tracing/tracing/metrics/system_health/power_metric_test.html View 1 2 16 chunks +60 lines, -30 lines 0 comments Download
M tracing/tracing/metrics/system_health/responsiveness_metric.html View 1 2 4 chunks +12 lines, -6 lines 0 comments Download
M tracing/tracing/metrics/system_health/utils.html View 1 2 1 chunk +3 lines, -3 lines 0 comments Download
M tracing/tracing/metrics/system_health/webview_startup_metric.html View 1 2 1 chunk +1 line, -2 lines 0 comments Download
M tracing/tracing/metrics/v8/gc_metric.html View 1 2 1 chunk +3 lines, -2 lines 0 comments Download
M tracing/tracing/metrics/v8/utils.html View 1 2 2 chunks +3 lines, -4 lines 0 comments Download
M tracing/tracing/model/annotation.html View 1 2 3 chunks +9 lines, -6 lines 0 comments Download
M tracing/tracing/model/async_slice.html View 1 2 4 chunks +17 lines, -10 lines 0 comments Download
M tracing/tracing/model/async_slice_group.html View 1 2 4 chunks +8 lines, -9 lines 0 comments Download
M tracing/tracing/model/clock_sync_manager.html View 1 2 5 chunks +13 lines, -8 lines 0 comments Download
M tracing/tracing/model/container_memory_dump.html View 1 2 2 chunks +2 lines, -4 lines 0 comments Download
M tracing/tracing/model/counter.html View 1 2 4 chunks +7 lines, -11 lines 0 comments Download
M tracing/tracing/model/cpu.html View 1 2 9 chunks +25 lines, -15 lines 0 comments Download
M tracing/tracing/model/cpu_slice.html View 1 2 1 chunk +6 lines, -3 lines 0 comments Download
M tracing/tracing/model/cpu_test.html View 1 2 2 chunks +4 lines, -2 lines 0 comments Download
M tracing/tracing/model/device.html View 1 2 2 chunks +8 lines, -4 lines 0 comments Download
M tracing/tracing/model/device_test.html View 1 2 2 chunks +4 lines, -2 lines 0 comments Download
M tracing/tracing/model/event.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/model/event_container.html View 1 2 3 chunks +6 lines, -3 lines 0 comments Download
M tracing/tracing/model/event_registry.html View 1 2 2 chunks +6 lines, -3 lines 0 comments Download
M tracing/tracing/model/event_set.html View 1 2 12 chunks +47 lines, -29 lines 0 comments Download
M tracing/tracing/model/event_set_test.html View 1 2 2 chunks +4 lines, -2 lines 0 comments Download
M tracing/tracing/model/flow_event.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/model/global_memory_dump.html View 1 2 17 chunks +36 lines, -39 lines 0 comments Download
M tracing/tracing/model/global_memory_dump_test.html View 1 2 8 chunks +14 lines, -12 lines 0 comments Download
M tracing/tracing/model/helpers/android_app.html View 1 2 9 chunks +18 lines, -18 lines 0 comments Download
M tracing/tracing/model/helpers/android_model_helper.html View 1 2 2 chunks +5 lines, -4 lines 0 comments Download
M tracing/tracing/model/helpers/android_model_helper_test.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/model/helpers/android_surface_flinger.html View 1 2 3 chunks +15 lines, -9 lines 0 comments Download
M tracing/tracing/model/helpers/chrome_browser_helper.html View 1 2 3 chunks +11 lines, -7 lines 0 comments Download
M tracing/tracing/model/helpers/chrome_gpu_helper.html View 1 2 2 chunks +4 lines, -2 lines 0 comments Download
M tracing/tracing/model/helpers/chrome_model_helper.html View 1 2 3 chunks +4 lines, -8 lines 0 comments Download
M tracing/tracing/model/helpers/chrome_process_helper.html View 1 2 2 chunks +8 lines, -4 lines 0 comments Download
M tracing/tracing/model/helpers/chrome_renderer_helper.html View 1 2 2 chunks +4 lines, -2 lines 0 comments Download
M tracing/tracing/model/interaction_record_test.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/model/ir_coverage.html View 1 2 5 chunks +14 lines, -10 lines 0 comments Download
M tracing/tracing/model/kernel.html View 1 2 3 chunks +6 lines, -3 lines 0 comments Download
M tracing/tracing/model/location.html View 1 2 4 chunks +4 lines, -8 lines 0 comments Download
M tracing/tracing/model/memory_allocator_dump.html View 1 2 3 chunks +11 lines, -10 lines 0 comments Download
M tracing/tracing/model/memory_dump_test_utils.html View 1 2 2 chunks +8 lines, -4 lines 0 comments Download
M tracing/tracing/model/model.html View 1 2 17 chunks +64 lines, -41 lines 0 comments Download
M tracing/tracing/model/model_indices.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/model/model_settings.html View 1 2 5 chunks +22 lines, -14 lines 0 comments Download
M tracing/tracing/model/object_collection.html View 1 2 3 chunks +9 lines, -10 lines 0 comments Download
M tracing/tracing/model/object_instance.html View 1 2 5 chunks +33 lines, -17 lines 0 comments Download
M tracing/tracing/model/power_series.html View 1 2 2 chunks +5 lines, -4 lines 0 comments Download
M tracing/tracing/model/power_series_test.html View 1 2 2 chunks +4 lines, -2 lines 0 comments Download
M tracing/tracing/model/process.html View 1 2 4 chunks +33 lines, -26 lines 0 comments Download
M tracing/tracing/model/process_base.html View 1 2 11 chunks +24 lines, -15 lines 0 comments Download
M tracing/tracing/model/process_memory_dump.html View 1 2 8 chunks +22 lines, -21 lines 0 comments Download
M tracing/tracing/model/process_memory_dump_test.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/model/process_test.html View 1 2 1 chunk +4 lines, -2 lines 0 comments Download
M tracing/tracing/model/proxy_selectable_item.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/model/resource_usage_series.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/model/resource_usage_series_test.html View 1 2 2 chunks +4 lines, -2 lines 0 comments Download
M tracing/tracing/model/selectable_item.html View 1 2 1 chunk +2 lines, -4 lines 0 comments Download
M tracing/tracing/model/slice.html View 1 2 8 chunks +33 lines, -17 lines 0 comments Download
M tracing/tracing/model/slice_group.html View 1 2 19 chunks +68 lines, -49 lines 0 comments Download
M tracing/tracing/model/slice_group_test.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/model/slice_test.html View 1 2 2 chunks +4 lines, -2 lines 0 comments Download
M tracing/tracing/model/source_info/source_info.html View 1 2 2 chunks +7 lines, -5 lines 0 comments Download
M tracing/tracing/model/stack_frame.html View 1 2 5 chunks +16 lines, -8 lines 0 comments Download
M tracing/tracing/model/thread.html View 1 2 10 chunks +36 lines, -39 lines 0 comments Download
M tracing/tracing/model/thread_slice.html View 1 2 1 chunk +4 lines, -2 lines 0 comments Download
M tracing/tracing/model/thread_test.html View 1 2 2 chunks +4 lines, -2 lines 0 comments Download
M tracing/tracing/model/thread_time_slice.html View 1 2 2 chunks +8 lines, -13 lines 0 comments Download
M tracing/tracing/model/time_to_object_instance_map.html View 1 2 4 chunks +10 lines, -8 lines 0 comments Download
M tracing/tracing/model/timed_event.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/model/user_model/animation_expectation.html View 1 2 1 chunk +4 lines, -2 lines 0 comments Download
M tracing/tracing/model/user_model/load_expectation.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/model/user_model/stub_expectation.html View 1 2 1 chunk +4 lines, -2 lines 0 comments Download
M tracing/tracing/model/user_model/user_expectation.html View 1 2 5 chunks +15 lines, -8 lines 0 comments Download
M tracing/tracing/model/vm_region.html View 1 2 8 chunks +17 lines, -13 lines 0 comments Download
M tracing/tracing/mre/file_handle.html View 1 2 2 chunks +6 lines, -3 lines 0 comments Download
M tracing/tracing/mre/function_handle.html View 1 2 3 chunks +12 lines, -6 lines 0 comments Download
M tracing/tracing/mre/job.html View 1 2 1 chunk +3 lines, -2 lines 0 comments Download
M tracing/tracing/mre/map_single_trace_cmdline.html View 1 2 2 chunks +4 lines, -2 lines 0 comments Download
M tracing/tracing/mre/mre_result.html View 1 2 4 chunks +10 lines, -5 lines 0 comments Download
M tracing/tracing/mre/reduce_map_results_cmdline.html View 1 2 3 chunks +6 lines, -3 lines 0 comments Download
M tracing/tracing/trace2html.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/ui/analysis/alert_sub_view.html View 1 2 2 chunks +5 lines, -4 lines 0 comments Download
M tracing/tracing/ui/analysis/analysis_link.html View 1 2 3 chunks +7 lines, -5 lines 0 comments Download
M tracing/tracing/ui/analysis/analysis_sub_view.html View 1 2 8 chunks +17 lines, -16 lines 0 comments Download
M tracing/tracing/ui/analysis/analysis_view.html View 1 2 4 chunks +13 lines, -8 lines 0 comments Download
M tracing/tracing/ui/analysis/container_memory_dump_sub_view.html View 1 2 2 chunks +7 lines, -7 lines 0 comments Download
M tracing/tracing/ui/analysis/container_memory_dump_sub_view_test.html View 1 2 2 chunks +4 lines, -2 lines 0 comments Download
M tracing/tracing/ui/analysis/flow_classifier.html View 1 2 3 chunks +6 lines, -3 lines 0 comments Download
M tracing/tracing/ui/analysis/frame_power_usage_chart.html View 1 2 1 chunk +1 line, -2 lines 0 comments Download
M tracing/tracing/ui/analysis/frame_power_usage_chart_perf_test.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/ui/analysis/generic_object_view.html View 1 2 3 chunks +9 lines, -6 lines 0 comments Download
M tracing/tracing/ui/analysis/memory_dump_allocator_details_pane.html View 1 2 19 chunks +47 lines, -34 lines 0 comments Download
M tracing/tracing/ui/analysis/memory_dump_allocator_details_pane_test.html View 1 2 7 chunks +15 lines, -15 lines 0 comments Download
M tracing/tracing/ui/analysis/memory_dump_header_pane.html View 1 2 1 chunk +5 lines, -3 lines 0 comments Download
M tracing/tracing/ui/analysis/memory_dump_heap_details_breakdown_view.html View 1 2 4 chunks +15 lines, -14 lines 0 comments Download
M tracing/tracing/ui/analysis/memory_dump_heap_details_pane.html View 1 2 2 chunks +5 lines, -4 lines 0 comments Download
M tracing/tracing/ui/analysis/memory_dump_heap_details_path_view.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/ui/analysis/memory_dump_heap_details_util.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/ui/analysis/memory_dump_overview_pane.html View 1 2 14 chunks +42 lines, -54 lines 0 comments Download
M tracing/tracing/ui/analysis/memory_dump_overview_pane_test.html View 1 2 4 chunks +17 lines, -10 lines 0 comments Download
M tracing/tracing/ui/analysis/memory_dump_sub_view_test_utils.html View 1 2 7 chunks +13 lines, -13 lines 0 comments Download
M tracing/tracing/ui/analysis/memory_dump_sub_view_util.html View 1 2 28 chunks +83 lines, -75 lines 0 comments Download
M tracing/tracing/ui/analysis/memory_dump_sub_view_util_test.html View 1 2 7 chunks +18 lines, -16 lines 0 comments Download
M tracing/tracing/ui/analysis/memory_dump_vm_regions_details_pane.html View 1 2 6 chunks +10 lines, -17 lines 0 comments Download
M tracing/tracing/ui/analysis/memory_dump_vm_regions_details_pane_test.html View 1 2 2 chunks +10 lines, -7 lines 0 comments Download
M tracing/tracing/ui/analysis/multi_async_slice_sub_view.html View 1 2 1 chunk +5 lines, -6 lines 0 comments Download
M tracing/tracing/ui/analysis/multi_event_sub_view.html View 1 2 2 chunks +3 lines, -3 lines 0 comments Download
M tracing/tracing/ui/analysis/multi_event_summary.html View 1 2 5 chunks +10 lines, -8 lines 0 comments Download
M tracing/tracing/ui/analysis/multi_event_summary_table.html View 1 2 5 chunks +26 lines, -17 lines 0 comments Download
M tracing/tracing/ui/analysis/multi_frame_sub_view.html View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M tracing/tracing/ui/analysis/multi_object_sub_view.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/ui/analysis/multi_sample_sub_view_test.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/ui/analysis/multi_thread_slice_sub_view.html View 1 2 1 chunk +3 lines, -3 lines 0 comments Download
M tracing/tracing/ui/analysis/multi_user_expectation_sub_view.html View 1 2 2 chunks +5 lines, -4 lines 0 comments Download
M tracing/tracing/ui/analysis/power_sample_summary_table.html View 1 2 3 chunks +3 lines, -6 lines 0 comments Download
M tracing/tracing/ui/analysis/rebuildable_behavior.html View 1 2 1 chunk +1 line, -2 lines 0 comments Download
M tracing/tracing/ui/analysis/related_events.html View 1 2 15 chunks +35 lines, -29 lines 0 comments Download
M tracing/tracing/ui/analysis/selection_summary_table.html View 1 2 1 chunk +3 lines, -2 lines 0 comments Download
M tracing/tracing/ui/analysis/single_async_slice_sub_view.html View 1 2 2 chunks +3 lines, -3 lines 0 comments Download
M tracing/tracing/ui/analysis/single_cpu_slice_sub_view.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/ui/analysis/single_event_sub_view.html View 1 2 4 chunks +17 lines, -9 lines 0 comments Download
M tracing/tracing/ui/analysis/single_event_sub_view_test.html View 1 2 1 chunk +4 lines, -2 lines 0 comments Download
M tracing/tracing/ui/analysis/single_frame_sub_view.html View 1 2 1 chunk +1 line, -2 lines 0 comments Download
M tracing/tracing/ui/analysis/single_object_instance_sub_view.html View 1 2 2 chunks +6 lines, -3 lines 0 comments Download
M tracing/tracing/ui/analysis/single_object_snapshot_sub_view.html View 1 2 2 chunks +6 lines, -3 lines 0 comments Download
M tracing/tracing/ui/analysis/single_power_sample_sub_view.html View 1 2 2 chunks +5 lines, -3 lines 0 comments Download
M tracing/tracing/ui/analysis/single_thread_slice_sub_view.html View 1 2 1 chunk +3 lines, -2 lines 0 comments Download
M tracing/tracing/ui/analysis/single_thread_time_slice_sub_view.html View 1 2 2 chunks +5 lines, -3 lines 0 comments Download
M tracing/tracing/ui/analysis/single_user_expectation_sub_view.html View 1 2 1 chunk +4 lines, -4 lines 0 comments Download
M tracing/tracing/ui/analysis/stacked_pane_view.html View 1 2 2 chunks +12 lines, -9 lines 0 comments Download
M tracing/tracing/ui/analysis/stacked_pane_view_test.html View 1 2 1 chunk +4 lines, -2 lines 0 comments Download
M tracing/tracing/ui/analysis/user_expectation_related_samples_table.html View 1 2 3 chunks +8 lines, -5 lines 0 comments Download
M tracing/tracing/ui/annotations/comment_box_annotation_view.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/ui/base/animation_controller.html View 1 2 4 chunks +19 lines, -15 lines 0 comments Download
M tracing/tracing/ui/base/bar_chart_test.html View 1 2 1 chunk +1 line, -2 lines 0 comments Download
M tracing/tracing/ui/base/camera.html View 1 2 6 chunks +12 lines, -11 lines 0 comments Download
M tracing/tracing/ui/base/chart_base.html View 1 2 2 chunks +4 lines, -2 lines 0 comments Download
M tracing/tracing/ui/base/chart_base_2d.html View 1 2 3 chunks +7 lines, -8 lines 0 comments Download
M tracing/tracing/ui/base/checkbox.html View 1 2 3 chunks +8 lines, -10 lines 0 comments Download
M tracing/tracing/ui/base/checkbox_picker.html View 1 2 3 chunks +15 lines, -15 lines 0 comments Download
M tracing/tracing/ui/base/color_legend.html View 1 2 1 chunk +3 lines, -2 lines 0 comments Download
M tracing/tracing/ui/base/column_chart.html View 1 2 2 chunks +4 lines, -2 lines 0 comments Download
M tracing/tracing/ui/base/column_chart_test.html View 1 2 1 chunk +1 line, -2 lines 0 comments Download
M tracing/tracing/ui/base/container_that_decorates_its_children.html View 1 2 2 chunks +6 lines, -3 lines 0 comments Download
M tracing/tracing/ui/base/deep_utils.html View 1 2 4 chunks +8 lines, -7 lines 0 comments Download
M tracing/tracing/ui/base/dom_helpers.html View 1 2 12 chunks +52 lines, -29 lines 0 comments Download
M tracing/tracing/ui/base/drag_handle.html View 1 2 4 chunks +7 lines, -7 lines 0 comments Download
M tracing/tracing/ui/base/draw_helpers.html View 1 2 6 chunks +14 lines, -16 lines 0 comments Download
M tracing/tracing/ui/base/dropdown.html View 1 2 3 chunks +8 lines, -12 lines 0 comments Download
M tracing/tracing/ui/base/elided_cache.html View 1 2 1 chunk +3 lines, -3 lines 0 comments Download
M tracing/tracing/ui/base/event_presenter.html View 1 2 2 chunks +4 lines, -2 lines 0 comments Download
M tracing/tracing/ui/base/fast_rect_renderer.html View 1 2 3 chunks +6 lines, -3 lines 0 comments Download
M tracing/tracing/ui/base/file.html View 1 2 1 chunk +3 lines, -2 lines 0 comments Download
M tracing/tracing/ui/base/grouping_table.html View 1 2 4 chunks +6 lines, -6 lines 0 comments Download
M tracing/tracing/ui/base/heading.html View 1 2 3 chunks +4 lines, -8 lines 0 comments Download
M tracing/tracing/ui/base/hot_key.html View 1 2 1 chunk +10 lines, -6 lines 0 comments Download
M tracing/tracing/ui/base/hotkey_controller.html View 1 2 11 chunks +46 lines, -28 lines 0 comments Download
M tracing/tracing/ui/base/hotkey_controller_test.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/ui/base/info_bar_group.html View 1 2 1 chunk +4 lines, -2 lines 0 comments Download
M tracing/tracing/ui/base/line_chart_test.html View 1 2 1 chunk +1 line, -2 lines 0 comments Download
M tracing/tracing/ui/base/list_and_associated_view.html View 1 2 2 chunks +5 lines, -3 lines 0 comments Download
M tracing/tracing/ui/base/list_view.html View 1 2 3 chunks +23 lines, -15 lines 0 comments Download
M tracing/tracing/ui/base/mouse_mode_icon.html View 1 2 3 chunks +15 lines, -10 lines 0 comments Download
M tracing/tracing/ui/base/mouse_mode_selector.html View 1 2 17 chunks +62 lines, -56 lines 0 comments Download
M tracing/tracing/ui/base/mouse_tracker.html View 1 2 2 chunks +11 lines, -7 lines 0 comments Download
M tracing/tracing/ui/base/name_bar_chart_test.html View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M tracing/tracing/ui/base/name_column_chart_test.html View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M tracing/tracing/ui/base/name_line_chart_test.html View 1 2 1 chunk +1 line, -2 lines 0 comments Download
M tracing/tracing/ui/base/overlay.html View 1 2 7 chunks +13 lines, -14 lines 0 comments Download
M tracing/tracing/ui/base/overlay_test.html View 1 2 1 chunk +3 lines, -2 lines 0 comments Download
M tracing/tracing/ui/base/polymer_preload.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/ui/base/quad_stack_view.html View 1 2 11 chunks +30 lines, -27 lines 0 comments Download
M tracing/tracing/ui/base/radio_picker.html View 1 2 4 chunks +23 lines, -18 lines 0 comments Download
M tracing/tracing/ui/base/table.html View 1 2 39 chunks +137 lines, -104 lines 0 comments Download
M tracing/tracing/ui/base/table_header_cell.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/ui/base/table_test.html View 1 2 3 chunks +5 lines, -7 lines 0 comments Download
M tracing/tracing/ui/base/timing_tool.html View 1 2 6 chunks +22 lines, -14 lines 0 comments Download
M tracing/tracing/ui/base/ui.html View 1 2 5 chunks +16 lines, -12 lines 0 comments Download
M tracing/tracing/ui/base/ui_state.html View 1 2 1 chunk +5 lines, -4 lines 0 comments Download
M tracing/tracing/ui/base/ui_state_test.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/ui/base/ui_test.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/ui/base/utils.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/ui/brushing_state.html View 1 2 9 chunks +48 lines, -24 lines 0 comments Download
M tracing/tracing/ui/brushing_state_controller.html View 1 2 9 chunks +31 lines, -18 lines 0 comments Download
M tracing/tracing/ui/extras/about_tracing/inspector_connection.html View 1 2 2 chunks +5 lines, -3 lines 0 comments Download
M tracing/tracing/ui/extras/about_tracing/inspector_tracing_controller_client.html View 1 2 3 chunks +15 lines, -8 lines 0 comments Download
M tracing/tracing/ui/extras/about_tracing/mock_tracing_controller_client.html View 1 2 2 chunks +4 lines, -2 lines 0 comments Download
M tracing/tracing/ui/extras/about_tracing/profiling_view.html View 1 2 5 chunks +8 lines, -7 lines 0 comments Download
M tracing/tracing/ui/extras/about_tracing/profiling_view_test.html View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M tracing/tracing/ui/extras/about_tracing/record_controller.html View 1 2 1 chunk +4 lines, -5 lines 0 comments Download
M tracing/tracing/ui/extras/about_tracing/record_selection_dialog.html View 1 2 14 chunks +38 lines, -29 lines 0 comments Download
M tracing/tracing/ui/extras/about_tracing/record_selection_dialog_test.html View 1 2 1 chunk +4 lines, -2 lines 0 comments Download
M tracing/tracing/ui/extras/about_tracing/xhr_based_tracing_controller_client.html View 1 2 1 chunk +4 lines, -3 lines 0 comments Download
M tracing/tracing/ui/extras/chrome/cc/display_item_debugger.html View 1 2 6 chunks +15 lines, -15 lines 0 comments Download
M tracing/tracing/ui/extras/chrome/cc/display_item_list_view.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/ui/extras/chrome/cc/layer_picker.html View 1 2 9 chunks +42 lines, -35 lines 0 comments Download
M tracing/tracing/ui/extras/chrome/cc/layer_tree_host_impl_view.html View 1 2 2 chunks +6 lines, -5 lines 0 comments Download
M tracing/tracing/ui/extras/chrome/cc/layer_tree_quad_stack_view.html View 1 2 31 chunks +81 lines, -77 lines 0 comments Download
M tracing/tracing/ui/extras/chrome/cc/layer_view.html View 1 2 3 chunks +6 lines, -3 lines 0 comments Download
M tracing/tracing/ui/extras/chrome/cc/picture_debugger.html View 1 2 6 chunks +14 lines, -13 lines 0 comments Download
M tracing/tracing/ui/extras/chrome/cc/picture_ops_chart_summary_view.html View 1 2 7 chunks +11 lines, -19 lines 0 comments Download
M tracing/tracing/ui/extras/chrome/cc/picture_ops_chart_view.html View 1 2 9 chunks +30 lines, -21 lines 0 comments Download
M tracing/tracing/ui/extras/chrome/cc/picture_ops_list_view.html View 1 2 2 chunks +6 lines, -7 lines 0 comments Download
M tracing/tracing/ui/extras/chrome/cc/picture_ops_list_view_test.html View 1 2 2 chunks +4 lines, -4 lines 0 comments Download
M tracing/tracing/ui/extras/chrome/cc/picture_view.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/ui/extras/chrome/cc/raster_task_selection.html View 1 2 3 chunks +19 lines, -10 lines 0 comments Download
M tracing/tracing/ui/extras/chrome/cc/raster_task_view.html View 1 2 3 chunks +10 lines, -7 lines 0 comments Download
M tracing/tracing/ui/extras/chrome/cc/selection.html View 1 2 5 chunks +10 lines, -8 lines 0 comments Download
M tracing/tracing/ui/extras/chrome/cc/tile_view.html View 1 2 1 chunk +1 line, -2 lines 0 comments Download
M tracing/tracing/ui/extras/chrome/layout_tree_sub_view.html View 1 2 5 chunks +9 lines, -6 lines 0 comments Download
M tracing/tracing/ui/extras/deep_reports/html_results.html View 1 2 3 chunks +10 lines, -8 lines 0 comments Download
M tracing/tracing/ui/extras/deep_reports/scalar_value.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/ui/extras/drive/comments_side_panel.html View 1 2 3 chunks +5 lines, -4 lines 0 comments Download
M tracing/tracing/ui/extras/drive/index.html View 1 2 3 chunks +9 lines, -5 lines 0 comments Download
M tracing/tracing/ui/extras/side_panel/alerts_side_panel.html View 1 2 3 chunks +5 lines, -4 lines 0 comments Download
M tracing/tracing/ui/extras/side_panel/frame_data_side_panel.html View 1 2 7 chunks +24 lines, -16 lines 0 comments Download
M tracing/tracing/ui/extras/side_panel/input_latency_side_panel.html View 1 2 9 chunks +24 lines, -22 lines 0 comments Download
M tracing/tracing/ui/extras/side_panel/input_latency_side_panel_test.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/ui/extras/system_stats/system_stats_instance_track.html View 1 2 8 chunks +27 lines, -19 lines 0 comments Download
M tracing/tracing/ui/extras/system_stats/system_stats_snapshot_view.html View 1 2 1 chunk +3 lines, -2 lines 0 comments Download
M tracing/tracing/ui/extras/v8/gc_objects_stats_table.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/ui/find_control.html View 1 2 2 chunks +7 lines, -4 lines 0 comments Download
M tracing/tracing/ui/find_controller.html View 1 2 3 chunks +7 lines, -7 lines 0 comments Download
M tracing/tracing/ui/find_controller_test.html View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M tracing/tracing/ui/scripting_control.html View 1 2 2 chunks +6 lines, -5 lines 0 comments Download
M tracing/tracing/ui/side_panel/metrics_side_panel.html View 1 2 3 chunks +6 lines, -4 lines 0 comments Download
M tracing/tracing/ui/side_panel/side_panel_container.html View 1 2 7 chunks +22 lines, -11 lines 0 comments Download
M tracing/tracing/ui/timeline_display_transform.html View 1 2 3 chunks +7 lines, -4 lines 0 comments Download
M tracing/tracing/ui/timeline_display_transform_animations.html View 1 2 2 chunks +6 lines, -4 lines 0 comments Download
M tracing/tracing/ui/timeline_interest_range.html View 1 2 6 chunks +13 lines, -12 lines 0 comments Download
M tracing/tracing/ui/timeline_track_view.html View 1 2 19 chunks +36 lines, -39 lines 0 comments Download
M tracing/tracing/ui/timeline_view.html View 1 2 10 chunks +28 lines, -18 lines 0 comments Download
M tracing/tracing/ui/timeline_view_help_overlay.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/ui/timeline_view_test.html View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M tracing/tracing/ui/timeline_viewport.html View 1 2 8 chunks +17 lines, -15 lines 0 comments Download
M tracing/tracing/ui/tracks/async_slice_group_track.html View 1 2 3 chunks +10 lines, -5 lines 0 comments Download
M tracing/tracing/ui/tracks/chart_series.html View 1 2 6 chunks +11 lines, -13 lines 0 comments Download
M tracing/tracing/ui/tracks/chart_series_test.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/ui/tracks/chart_series_y_axis.html View 1 2 5 chunks +8 lines, -13 lines 0 comments Download
M tracing/tracing/ui/tracks/chart_series_y_axis_test.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/ui/tracks/chart_track.html View 1 2 1 chunk +1 line, -2 lines 0 comments Download
M tracing/tracing/ui/tracks/container_to_track_map.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/ui/tracks/container_track.html View 1 2 3 chunks +6 lines, -3 lines 0 comments Download
M tracing/tracing/ui/tracks/counter_track_perf_test.html View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M tracing/tracing/ui/tracks/counter_track_test.html View 1 2 2 chunks +8 lines, -4 lines 0 comments Download
M tracing/tracing/ui/tracks/cpu_track.html View 1 2 2 chunks +14 lines, -12 lines 0 comments Download
M tracing/tracing/ui/tracks/cpu_usage_track_test.html View 1 2 2 chunks +4 lines, -2 lines 0 comments Download
M tracing/tracing/ui/tracks/drawing_container.html View 1 2 4 chunks +10 lines, -7 lines 0 comments Download
M tracing/tracing/ui/tracks/drawing_container_perf_test.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/ui/tracks/event_to_track_map.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/ui/tracks/frame_track.html View 1 2 1 chunk +1 line, -2 lines 0 comments Download
M tracing/tracing/ui/tracks/frame_track_test.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/ui/tracks/global_memory_dump_track.html View 1 2 4 chunks +4 lines, -8 lines 0 comments Download
M tracing/tracing/ui/tracks/interaction_track.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/ui/tracks/kernel_track.html View 1 2 1 chunk +3 lines, -3 lines 0 comments Download
M tracing/tracing/ui/tracks/letter_dot_track.html View 1 2 7 chunks +12 lines, -18 lines 0 comments Download
M tracing/tracing/ui/tracks/memory_dump_track_test_utils.html View 1 2 1 chunk +4 lines, -2 lines 0 comments Download
M tracing/tracing/ui/tracks/memory_dump_track_util.html View 1 2 2 chunks +10 lines, -12 lines 0 comments Download
M tracing/tracing/ui/tracks/model_track.html View 1 2 11 chunks +25 lines, -30 lines 0 comments Download
M tracing/tracing/ui/tracks/multi_row_track.html View 1 2 5 chunks +17 lines, -17 lines 0 comments Download
M tracing/tracing/ui/tracks/object_instance_track.html View 1 2 5 chunks +9 lines, -11 lines 0 comments Download
M tracing/tracing/ui/tracks/other_threads_track.html View 1 2 2 chunks +3 lines, -4 lines 0 comments Download
M tracing/tracing/ui/tracks/power_series_track.html View 1 2 1 chunk +1 line, -2 lines 0 comments Download
M tracing/tracing/ui/tracks/process_memory_dump_track.html View 1 2 2 chunks +2 lines, -4 lines 0 comments Download
M tracing/tracing/ui/tracks/process_memory_dump_track_test.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/ui/tracks/process_summary_track.html View 1 2 1 chunk +1 line, -2 lines 0 comments Download
M tracing/tracing/ui/tracks/process_track.html View 1 2 2 chunks +5 lines, -4 lines 0 comments Download
M tracing/tracing/ui/tracks/process_track_base.html View 1 2 9 chunks +18 lines, -22 lines 0 comments Download
M tracing/tracing/ui/tracks/rect_track.html View 1 2 5 chunks +10 lines, -12 lines 0 comments Download
M tracing/tracing/ui/tracks/slice_group_track.html View 1 2 3 chunks +10 lines, -11 lines 0 comments Download
M tracing/tracing/ui/tracks/stacked_bars_track.html View 1 2 3 chunks +5 lines, -4 lines 0 comments Download
M tracing/tracing/ui/tracks/thread_track.html View 1 2 2 chunks +9 lines, -6 lines 0 comments Download
M tracing/tracing/ui/tracks/track.html View 1 2 6 chunks +13 lines, -12 lines 0 comments Download
M tracing/tracing/ui/tracks/x_axis_track.html View 1 2 5 chunks +10 lines, -7 lines 0 comments Download
M tracing/tracing/ui/view_specific_brushing_state.html View 1 2 2 chunks +6 lines, -6 lines 0 comments Download
M tracing/tracing/value/diagnostics/breakdown.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/value/diagnostics/merged_telemetry_info.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/value/diagnostics/related_histogram_map.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/value/diagnostics/scalar.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/value/histogram.html View 1 2 1 chunk +4 lines, -2 lines 0 comments Download
M tracing/tracing/value/histogram_test.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/value/ui/diagnostic_span.html View 1 2 2 chunks +3 lines, -3 lines 0 comments Download
M tracing/tracing/value/ui/histogram_set_table_test.html View 1 2 12 chunks +24 lines, -12 lines 0 comments Download
M tracing/tracing/value/ui/histogram_set_view_test.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/value/ui/preferred_display_unit.html View 1 2 1 chunk +1 line, -2 lines 0 comments Download
M tracing/tracing/value/ui/scalar_context_controller.html View 1 2 5 chunks +20 lines, -12 lines 0 comments Download
M tracing/tracing/value/ui/scalar_context_controller_test.html View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M tracing/tracing/value/ui/scalar_span.html View 1 2 13 chunks +31 lines, -30 lines 0 comments Download

Messages

Total messages: 27 (15 generated)
lpy
PTAL.
3 years, 9 months ago (2017-03-24 07:58:48 UTC) #6
sullivan
Thanks for doing this! I posted a style question on the linked bug. /dashboard and ...
3 years, 9 months ago (2017-03-24 12:49:53 UTC) #9
charliea (OOO until 10-5)
lgtm for tracing/ Thanks for taking this on @lpy! This seems like a sane intermediate ...
3 years, 9 months ago (2017-03-27 15:33:39 UTC) #11
charliea (OOO until 10-5)
Ah, one last thing: could you change the subject and description to say "Fix violations" ...
3 years, 9 months ago (2017-03-27 15:35:58 UTC) #12
lpy
On 2017/03/27 15:35:58, charliea wrote: > Ah, one last thing: could you change the subject ...
3 years, 9 months ago (2017-03-27 17:14:24 UTC) #14
benjhayden
I don't see any `if (a < b) {return true;} ` in this CL. Is ...
3 years, 9 months ago (2017-03-27 18:15:00 UTC) #15
lpy
On 2017/03/27 18:15:00, benjhayden wrote: > I don't see any `if (a < b) {return ...
3 years, 9 months ago (2017-03-27 18:26:39 UTC) #16
benjhayden
lgtm, thanks!
3 years, 9 months ago (2017-03-27 18:38:15 UTC) #17
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2776653002/10001
3 years, 9 months ago (2017-03-27 19:31:11 UTC) #19
commit-bot: I haz the power
Try jobs failed on following builders: Catapult Android Tryserver on master.tryserver.client.catapult (JOB_FAILED, https://build.chromium.org/p/tryserver.client.catapult/builders/Catapult%20Android%20Tryserver/builds/3246) Catapult Mac ...
3 years, 9 months ago (2017-03-27 19:34:31 UTC) #21
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2776653002/20001
3 years, 9 months ago (2017-03-27 20:17:09 UTC) #24
commit-bot: I haz the power
3 years, 9 months ago (2017-03-27 20:43:53 UTC) #27
Message was sent while issue was closed.
Committed patchset #3 (id:20001) as
https://chromium.googlesource.com/external/github.com/catapult-project/catapu...

Powered by Google App Engine
This is Rietveld 408576698