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

Issue 2526613002: Return short-hand object literals to exportTo. (Closed)

Created:
4 years, 1 month ago by benjhayden
Modified:
4 years ago
Reviewers:
eakuefner
CC:
catapult-reviews_chromium.org, tracing-review_chromium.org
Target Ref:
refs/heads/master
Project:
catapult
Visibility:
Public.

Description

Return short-hand object literals to exportTo. Currently, HTML source files in tracing/ manage namespaces using tr.exportTo(), which takes a namespace string and a callback that returns a dictionary. exportTo adds the returned dictionary to the namespace specified by the namespace string. The dictionaries returned to exportTo are currently in ES5 long-form like {foo: foo}. However, this long-form is repetitive and prone to copy-paste/find-replace errors. This CL uses sed to convert these long-form dictionaries to ES6 short-hand like {foo}. for f in *.html;do sed -e 's/^ \([_a-zA-Z0-9]\+\): \1,\?$/ \1,/g' -i $f;done This is git blame churn, but only in content-free source lines. BUG=catapult:#2963 Committed: https://chromium.googlesource.com/external/github.com/catapult-project/catapult/+/476d031f85fa622d1688ba2e3c08b2a5bb8d437a

Patch Set 1 : . #

Total comments: 1

Patch Set 2 : manual fixes #

Unified diffs Side-by-side diffs Delta from patch set Stats (+484 lines, -487 lines) Patch
M tracing/tracing/base/assert_utils.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/base/base.html View 1 chunk +7 lines, -7 lines 0 comments Download
M tracing/tracing/base/base64.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/base/bbox2.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/base/category_util.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/base/color.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/base/color_scheme.html View 2 chunks +2 lines, -2 lines 0 comments Download
M tracing/tracing/base/event.html View 1 chunk +2 lines, -2 lines 0 comments Download
M tracing/tracing/base/event_target.html View 1 chunk +2 lines, -2 lines 0 comments Download
M tracing/tracing/base/extension_registry.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/base/extension_registry_base.html View 1 1 chunk +4 lines, -5 lines 0 comments Download
M tracing/tracing/base/guid.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/base/headless_tests.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/base/interval_tree.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/base/iteration_helpers.html View 1 chunk +22 lines, -22 lines 0 comments Download
M tracing/tracing/base/math.html View 1 chunk +6 lines, -6 lines 0 comments Download
M tracing/tracing/base/multi_dimensional_view.html View 1 chunk +4 lines, -4 lines 0 comments Download
M tracing/tracing/base/piecewise_linear_function.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/base/quad.html View 1 chunk +3 lines, -3 lines 0 comments Download
M tracing/tracing/base/raf.html View 1 1 chunk +7 lines, -8 lines 0 comments Download
M tracing/tracing/base/range.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/base/range_utils.html View 1 chunk +3 lines, -3 lines 0 comments Download
M tracing/tracing/base/rect.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/base/running_statistics.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/base/settings.html View 1 chunk +2 lines, -2 lines 0 comments Download
M tracing/tracing/base/sinebow_color_generator.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/base/sorted_array_utils.html View 1 chunk +8 lines, -8 lines 0 comments Download
M tracing/tracing/base/statistics.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/base/task.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/base/time_display_modes.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/base/timing.html View 1 chunk +2 lines, -2 lines 0 comments Download
M tracing/tracing/base/unit.html View 1 chunk +2 lines, -2 lines 0 comments Download
M tracing/tracing/base/unit_scale.html View 1 chunk +2 lines, -2 lines 0 comments Download
M tracing/tracing/base/utils.html View 1 chunk +7 lines, -7 lines 0 comments Download
M tracing/tracing/base/xhr.html View 1 chunk +3 lines, -3 lines 0 comments Download
M tracing/tracing/core/auditor.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/core/filter.html View 1 chunk +4 lines, -4 lines 0 comments Download
M tracing/tracing/core/scripting_controller.html View 1 chunk +2 lines, -2 lines 0 comments Download
M tracing/tracing/core/scripting_object.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/core/test_utils.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/importer/context_processor.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/importer/empty_importer.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/importer/find_input_expectations.html View 1 chunk +4 lines, -4 lines 0 comments Download
M tracing/tracing/importer/find_load_expectations.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/importer/find_startup_expectations.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/importer/import.html View 1 chunk +2 lines, -2 lines 0 comments Download
M tracing/tracing/importer/importer.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/importer/proto_expectation.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/importer/simple_line_reader.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/importer/user_model_builder.html View 1 chunk +2 lines, -2 lines 0 comments Download
M tracing/tracing/metrics/blink/gc_metric.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/metrics/cpu_process_metric.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/metrics/metric_map_function.html View 1 chunk +2 lines, -2 lines 0 comments Download
M tracing/tracing/metrics/metric_registry.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/metrics/sample_metric.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/metrics/system_health/clock_sync_latency_metric.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/metrics/system_health/cpu_time_metric.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/metrics/system_health/hazard_metric.html View 1 1 chunk +4 lines, -5 lines 0 comments Download
M tracing/tracing/metrics/system_health/loading_metric.html View 1 chunk +4 lines, -4 lines 0 comments Download
M tracing/tracing/metrics/system_health/long_tasks_metric.html View 1 1 chunk +5 lines, -6 lines 0 comments Download
M tracing/tracing/metrics/system_health/memory_metric.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/metrics/system_health/power_metric.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/metrics/system_health/responsiveness_metric.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/metrics/system_health/system_health_metrics.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/metrics/system_health/utils.html View 1 chunk +2 lines, -2 lines 0 comments Download
M tracing/tracing/metrics/system_health/webview_startup_metric.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/metrics/tracing_metric.html View 1 chunk +2 lines, -2 lines 0 comments Download
M tracing/tracing/metrics/v8/execution_metric.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/metrics/v8/gc_metric.html View 1 1 chunk +2 lines, -2 lines 0 comments Download
M tracing/tracing/metrics/v8/runtime_stats_metric.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/metrics/v8/utils.html View 1 chunk +15 lines, -15 lines 0 comments Download
M tracing/tracing/metrics/v8/v8_metrics.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/activity.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/alert.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/annotation.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/async_slice.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/async_slice_group.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/clock_sync_manager.html View 1 chunk +2 lines, -2 lines 0 comments Download
M tracing/tracing/model/comment_box_annotation.html View 2 chunks +2 lines, -2 lines 0 comments Download
M tracing/tracing/model/compound_event_selection_state.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/container_memory_dump.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/counter.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/counter_sample.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/counter_series.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/cpu.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/cpu_slice.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/device.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/event.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/event_container.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/event_info.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/event_registry.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/event_set.html View 1 chunk +2 lines, -2 lines 0 comments Download
M tracing/tracing/model/flow_event.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/frame.html View 1 1 chunk +2 lines, -2 lines 0 comments Download
M tracing/tracing/model/global_memory_dump.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/heap_dump.html View 1 chunk +2 lines, -2 lines 0 comments Download
M tracing/tracing/model/helpers/android_app.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/helpers/android_model_helper.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/helpers/android_surface_flinger.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/helpers/chrome_browser_helper.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/helpers/chrome_gpu_helper.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/helpers/chrome_model_helper.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/helpers/chrome_process_helper.html View 1 chunk +7 lines, -7 lines 0 comments Download
M tracing/tracing/model/helpers/chrome_renderer_helper.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/instant_event.html View 1 chunk +4 lines, -4 lines 0 comments Download
M tracing/tracing/model/ir_coverage.html View 1 chunk +3 lines, -3 lines 0 comments Download
M tracing/tracing/model/kernel.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/location.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/memory_allocator_dump.html View 1 chunk +3 lines, -3 lines 0 comments Download
M tracing/tracing/model/memory_dump_test_utils.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/model.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/model_indices.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/model_settings.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/model_stats.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/object_collection.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/object_instance.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/object_snapshot.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/power_sample.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/power_series.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/process.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/process_base.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/process_memory_dump.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/profile_node.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/profile_tree.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/proxy_selectable_item.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/rect_annotation.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/sample.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/scoped_id.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/selectable_item.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/selection_state.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/slice.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/slice_group.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/source_info/js_source_info.html View 1 1 chunk +9 lines, -7 lines 0 comments Download
M tracing/tracing/model/source_info/source_info.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/stack_frame.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/thread.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/thread_slice.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/thread_time_slice.html View 1 1 chunk +2 lines, -2 lines 0 comments Download
M tracing/tracing/model/time_to_object_instance_map.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/timed_event.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/user_model/animation_expectation.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/user_model/idle_expectation.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/user_model/load_expectation.html View 1 chunk +2 lines, -2 lines 0 comments Download
M tracing/tracing/model/user_model/response_expectation.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/user_model/startup_expectation.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/user_model/stub_expectation.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/user_model/user_expectation.html View 1 chunk +2 lines, -2 lines 0 comments Download
M tracing/tracing/model/user_model/user_model.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/model/vm_region.html View 1 chunk +2 lines, -2 lines 0 comments Download
M tracing/tracing/model/x_marker_annotation.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/analysis/analysis_sub_view.html View 1 chunk +2 lines, -2 lines 0 comments Download
M tracing/tracing/ui/analysis/flow_classifier.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/analysis/memory_dump_allocator_details_pane.html View 1 chunk +4 lines, -4 lines 0 comments Download
M tracing/tracing/ui/analysis/memory_dump_heap_details_util.html View 1 chunk +4 lines, -4 lines 0 comments Download
M tracing/tracing/ui/analysis/memory_dump_overview_pane.html View 1 chunk +6 lines, -6 lines 0 comments Download
M tracing/tracing/ui/analysis/memory_dump_sub_view_test_utils.html View 1 chunk +18 lines, -18 lines 0 comments Download
M tracing/tracing/ui/analysis/memory_dump_sub_view_util.html View 1 chunk +11 lines, -11 lines 0 comments Download
M tracing/tracing/ui/analysis/multi_event_summary.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/analysis/object_instance_view.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/analysis/object_snapshot_view.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/analysis/rebuildable_behavior.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/analysis/stacked_pane.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/analysis/stub_analysis_table.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/base/animation.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/base/animation_controller.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/base/bar_chart.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/base/box_chart.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/base/camera.html View 2 chunks +2 lines, -2 lines 0 comments Download
M tracing/tracing/ui/base/chart_base.html View 2 chunks +4 lines, -4 lines 0 comments Download
M tracing/tracing/ui/base/chart_base_2d.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/base/chart_base_2d_brushable_x.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/base/column_chart.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/base/constants.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/base/container_that_decorates_its_children.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/base/deep_utils.html View 1 chunk +6 lines, -6 lines 0 comments Download
M tracing/tracing/ui/base/dom_helpers.html View 1 chunk +10 lines, -10 lines 0 comments Download
M tracing/tracing/ui/base/draw_helpers.html View 1 chunk +7 lines, -7 lines 0 comments Download
M tracing/tracing/ui/base/elided_cache.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/base/event_presenter.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/base/fast_rect_renderer.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/base/favicons.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/base/file.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/base/hot_key.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/base/hotkey_controller.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/base/line_chart.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/base/list_and_associated_view.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/base/list_view.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/base/mouse_mode_selector.html View 1 chunk +2 lines, -2 lines 0 comments Download
M tracing/tracing/ui/base/mouse_modes.html View 1 chunk +2 lines, -2 lines 0 comments Download
M tracing/tracing/ui/base/mouse_tracker.html View 1 chunk +2 lines, -2 lines 0 comments Download
M tracing/tracing/ui/base/name_bar_chart.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/base/name_column_chart.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/base/name_line_chart.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/base/overlay.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/base/pie_chart.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/base/quad_stack_view.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/base/scatter_chart.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/base/table.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/base/timing_tool.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/base/ui.html View 1 chunk +3 lines, -3 lines 0 comments Download
M tracing/tracing/ui/base/ui_state.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/base/utils.html View 1 chunk +6 lines, -6 lines 0 comments Download
M tracing/tracing/ui/brushing_state.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/brushing_state_controller.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/find_controller.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/side_panel/side_panel.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/side_panel/side_panel_registry.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/timeline_display_transform.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/timeline_interest_range.html View 1 chunk +2 lines, -2 lines 0 comments Download
M tracing/tracing/ui/timeline_viewport.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/tracks/alert_track.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/tracks/async_slice_group_track.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/tracks/chart_point.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/tracks/chart_series.html View 1 chunk +2 lines, -2 lines 0 comments Download
M tracing/tracing/ui/tracks/chart_series_y_axis.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/tracks/chart_track.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/tracks/chart_transform.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/tracks/container_to_track_map.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/tracks/container_track.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/tracks/counter_track.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/tracks/cpu_track.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/tracks/cpu_usage_track.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/tracks/device_track.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/tracks/drawing_container.html View 1 chunk +2 lines, -2 lines 0 comments Download
M tracing/tracing/ui/tracks/event_to_track_map.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/tracks/frame_track.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/tracks/global_memory_dump_track.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/tracks/interaction_track.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/tracks/kernel_track.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/tracks/letter_dot_track.html View 1 chunk +2 lines, -2 lines 0 comments Download
M tracing/tracing/ui/tracks/memory_dump_track_test_utils.html View 1 chunk +2 lines, -2 lines 0 comments Download
M tracing/tracing/ui/tracks/model_track.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/tracks/multi_row_track.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/tracks/object_instance_group_track.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/tracks/object_instance_track.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/tracks/other_threads_track.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/tracks/power_series_track.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/tracks/process_memory_dump_track.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/tracks/process_summary_track.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/tracks/process_track.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/tracks/process_track_base.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/tracks/rect_track.html View 1 chunk +2 lines, -2 lines 0 comments Download
M tracing/tracing/ui/tracks/sample_track.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/tracks/slice_group_track.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/tracks/slice_track.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/tracks/spacing_track.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/tracks/stacked_bars_track.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/tracks/thread_track.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/tracks/track.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/ui/tracks/x_axis_track.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/value/diagnostics/breakdown.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/value/diagnostics/event_ref.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/value/diagnostics/generic.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/value/diagnostics/iteration_info.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/value/diagnostics/related_event_set.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/value/diagnostics/related_histogram_breakdown.html View 1 chunk +2 lines, -3 lines 0 comments Download
M tracing/tracing/value/diagnostics/scalar.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/value/generic_table.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/value/numeric.html View 1 chunk +2 lines, -2 lines 0 comments Download
M tracing/tracing/value/ui/array_of_numbers_span.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/value/ui/diagnostic_span.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/value/ui/generic_table_view.html View 1 chunk +2 lines, -2 lines 0 comments Download
M tracing/tracing/value/ui/histogram_set_table_row.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/value/ui/scalar_context_controller.html View 1 chunk +1 line, -1 line 0 comments Download
M tracing/tracing/value/ui/scalar_span.html View 1 chunk +1 line, -1 line 0 comments Download

Messages

Total messages: 25 (19 generated)
benjhayden
PTAL :-) https://codereview.chromium.org/2526613002/diff/40001/tracing/tracing/ui/base/draw_helpers.html File tracing/tracing/ui/base/draw_helpers.html (right): https://codereview.chromium.org/2526613002/diff/40001/tracing/tracing/ui/base/draw_helpers.html#newcode414 tracing/tracing/ui/base/draw_helpers.html:414: elidedTitleCache_: elidedTitleCache, This smells funny. This is ...
4 years, 1 month ago (2016-11-22 23:21:26 UTC) #16
benjhayden
On 2016/11/22 at 23:21:26, benjhayden wrote: > PTAL :-) > > https://codereview.chromium.org/2526613002/diff/40001/tracing/tracing/ui/base/draw_helpers.html > File tracing/tracing/ui/base/draw_helpers.html ...
4 years, 1 month ago (2016-11-22 23:21:52 UTC) #17
benjhayden
Looks like charliea is out for the week. eakuefner PTAL? :-)
4 years, 1 month ago (2016-11-23 00:28:29 UTC) #19
eakuefner
lgtm
4 years ago (2016-11-23 16:16:43 UTC) #20
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/2526613002/60001
4 years ago (2016-11-23 16:43:26 UTC) #22
commit-bot: I haz the power
4 years ago (2016-11-23 17:07:12 UTC) #25
Message was sent while issue was closed.
Committed patchset #2 (id:60001) as
https://chromium.googlesource.com/external/github.com/catapult-project/catapu...

Powered by Google App Engine
This is Rietveld 408576698