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

Issue 380763002: Add builders for tracing event's structural arguments (Closed)

Created:
6 years, 5 months ago by yurys
Modified:
6 years, 4 months ago
CC:
chromium-reviews, dsinclair+watch_chromium.org, erikwright+watch_chromium.org
Project:
chromium
Visibility:
Public.

Description

Add builders for tracing event's structural arguments The new classes allow building JSON-like structural arguments. Current implementation uses base::Value as backing store but that can be replaced in the future with something more efficient without changing client code. All clients of cc/debug/traced_value.h should eventually switch to use the new builders. BUG=361045 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=286849 R=alph@chromium.org, dsinclair@chromium.org, nduca@chromium.org, willchan@chromium.org Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=286984

Patch Set 1 #

Total comments: 2

Patch Set 2 : Fixed return type #

Patch Set 3 : Fixed test compilation #

Total comments: 8

Patch Set 4 : #

Patch Set 5 : Added non-template TracedArrayBase and TracedDictionaryBase, typedefed SelftType #

Total comments: 8

Patch Set 6 : Addressed comments #

Patch Set 7 : Added protected accessor stack() #

Patch Set 8 : Changed namespace from base:: to base::debug::, formatting #

Patch Set 9 : #

Patch Set 10 : Switched most of cc/ code to base/debug/trace_event_argument.h #

Patch Set 11 : #

Patch Set 12 : #

Patch Set 13 : #

Total comments: 3

Patch Set 14 : #

Patch Set 15 : #

Total comments: 6

Patch Set 16 : Addressed comments #

Patch Set 17 : Marked base::debug::ConvertableToTraceFormat as BASE_EXPORT #

Patch Set 18 : Rebase #

Patch Set 19 : Fixed memory leak found by Linux ASAN #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1331 lines, -861 lines) Patch
M base/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 2 chunks +3 lines, -0 lines 0 comments Download
M base/base.gyp View 1 2 3 4 5 6 7 8 9 10 1 chunk +1 line, -0 lines 0 comments Download
M base/base.gypi View 1 2 3 4 5 6 7 8 9 10 1 chunk +2 lines, -0 lines 0 comments Download
A base/debug/trace_event_argument.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +59 lines, -0 lines 0 comments Download
A base/debug/trace_event_argument.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +117 lines, -0 lines 0 comments Download
A base/debug/trace_event_argument_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +53 lines, -0 lines 0 comments Download
M base/debug/trace_event_impl.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 2 chunks +8 lines, -1 line 0 comments Download
M cc/base/math_util.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 2 chunks +29 lines, -10 lines 0 comments Download
M cc/base/math_util.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 4 chunks +43 lines, -31 lines 0 comments Download
M cc/base/region.h View 1 2 3 4 5 6 7 8 9 2 chunks +4 lines, -0 lines 0 comments Download
M cc/base/region.cc View 1 2 3 4 5 6 7 8 9 2 chunks +11 lines, -0 lines 0 comments Download
M cc/debug/frame_viewer_instrumentation.h View 1 2 3 4 5 6 7 8 9 3 chunks +15 lines, -18 lines 0 comments Download
M cc/debug/rendering_stats.h View 1 2 3 4 5 6 7 8 2 chunks +3 lines, -1 line 0 comments Download
M cc/debug/rendering_stats.cc View 1 2 3 4 5 6 7 8 3 chunks +32 lines, -28 lines 0 comments Download
M cc/debug/rendering_stats_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 4 chunks +13 lines, -27 lines 0 comments Download
M cc/debug/traced_picture.cc View 1 2 3 4 5 6 7 8 1 chunk +0 lines, -1 line 0 comments Download
M cc/debug/traced_value.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +14 lines, -36 lines 0 comments Download
M cc/debug/traced_value.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 3 chunks +18 lines, -29 lines 0 comments Download
M cc/layers/heads_up_display_layer_impl.h View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -1 line 0 comments Download
M cc/layers/heads_up_display_layer_impl.cc View 1 2 3 4 5 6 7 8 9 2 chunks +4 lines, -2 lines 0 comments Download
M cc/layers/layer_impl.h View 1 2 3 4 5 6 7 8 9 3 chunks +3 lines, -3 lines 0 comments Download
M cc/layers/layer_impl.cc View 1 2 3 4 5 6 7 8 9 6 chunks +59 lines, -33 lines 0 comments Download
M cc/layers/picture_layer_impl.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +1 line, -1 line 0 comments Download
M cc/layers/picture_layer_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 2 chunks +23 lines, -11 lines 0 comments Download
M cc/layers/surface_layer_impl.h View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -1 line 0 comments Download
M cc/layers/surface_layer_impl.cc View 1 2 3 4 5 6 7 8 9 2 chunks +2 lines, -1 line 0 comments Download
M cc/layers/tiled_layer_impl.h View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -1 line 0 comments Download
M cc/layers/tiled_layer_impl.cc View 1 2 3 4 5 6 7 8 9 2 chunks +5 lines, -2 lines 0 comments Download
M cc/output/begin_frame_args.h View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +10 lines, -1 line 0 comments Download
M cc/output/begin_frame_args.cc View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +11 lines, -3 lines 0 comments Download
M cc/output/filter_operation.h View 1 2 3 4 5 6 7 8 9 10 2 chunks +4 lines, -1 line 0 comments Download
M cc/output/filter_operation.cc View 1 2 3 4 5 6 7 8 9 10 4 chunks +14 lines, -12 lines 0 comments Download
M cc/output/filter_operations.h View 1 2 3 4 5 6 7 8 9 2 chunks +4 lines, -2 lines 0 comments Download
M cc/output/filter_operations.cc View 1 2 3 4 5 6 7 8 9 2 chunks +9 lines, -7 lines 0 comments Download
M cc/quads/checkerboard_draw_quad.h View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -1 line 0 comments Download
M cc/quads/checkerboard_draw_quad.cc View 1 2 3 4 5 6 7 8 9 2 chunks +2 lines, -1 line 0 comments Download
M cc/quads/content_draw_quad_base.h View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -1 line 0 comments Download
M cc/quads/content_draw_quad_base.cc View 1 2 3 4 5 6 7 8 9 2 chunks +10 lines, -3 lines 0 comments Download
M cc/quads/debug_border_draw_quad.h View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -1 line 0 comments Download
M cc/quads/debug_border_draw_quad.cc View 1 2 3 4 5 6 7 8 9 2 chunks +2 lines, -1 line 0 comments Download
M cc/quads/draw_quad.h View 1 2 3 4 5 6 7 8 9 3 chunks +5 lines, -2 lines 0 comments Download
M cc/quads/draw_quad.cc View 1 2 3 4 5 6 7 8 9 2 chunks +29 lines, -17 lines 0 comments Download
M cc/quads/io_surface_draw_quad.h View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -1 line 0 comments Download
M cc/quads/io_surface_draw_quad.cc View 1 2 3 4 5 6 7 8 9 2 chunks +6 lines, -2 lines 0 comments Download
M cc/quads/picture_draw_quad.h View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -1 line 0 comments Download
M cc/quads/picture_draw_quad.cc View 1 2 3 4 5 6 7 8 9 2 chunks +5 lines, -2 lines 0 comments Download
M cc/quads/render_pass.h View 1 2 3 4 5 6 7 8 9 2 chunks +4 lines, -1 line 0 comments Download
M cc/quads/render_pass.cc View 1 2 3 4 5 6 7 8 9 10 2 chunks +25 lines, -12 lines 0 comments Download
M cc/quads/render_pass_draw_quad.h View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -1 line 0 comments Download
M cc/quads/render_pass_draw_quad.cc View 1 2 3 4 5 6 7 8 9 2 chunks +17 lines, -8 lines 0 comments Download
M cc/quads/shared_quad_state.h View 1 2 3 4 5 6 7 8 9 2 chunks +4 lines, -1 line 0 comments Download
M cc/quads/shared_quad_state.cc View 1 2 3 4 5 6 7 8 9 2 chunks +22 lines, -11 lines 0 comments Download
M cc/quads/solid_color_draw_quad.h View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -1 line 0 comments Download
M cc/quads/solid_color_draw_quad.cc View 1 2 3 4 5 6 7 8 9 2 chunks +2 lines, -1 line 0 comments Download
M cc/quads/stream_video_draw_quad.h View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -1 line 0 comments Download
M cc/quads/stream_video_draw_quad.cc View 1 2 3 4 5 6 7 8 9 2 chunks +5 lines, -2 lines 0 comments Download
M cc/quads/surface_draw_quad.h View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -1 line 0 comments Download
M cc/quads/surface_draw_quad.cc View 1 2 3 4 5 6 7 8 9 2 chunks +2 lines, -1 line 0 comments Download
M cc/quads/texture_draw_quad.h View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -1 line 0 comments Download
M cc/quads/texture_draw_quad.cc View 1 2 3 4 5 6 7 8 9 2 chunks +15 lines, -6 lines 0 comments Download
M cc/quads/tile_draw_quad.h View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -1 line 0 comments Download
M cc/quads/tile_draw_quad.cc View 1 2 3 4 5 6 7 8 9 2 chunks +2 lines, -1 line 0 comments Download
M cc/quads/yuv_video_draw_quad.h View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -1 line 0 comments Download
M cc/quads/yuv_video_draw_quad.cc View 1 2 3 4 5 6 7 8 9 2 chunks +5 lines, -2 lines 0 comments Download
M cc/resources/image_copy_raster_worker_pool.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 2 chunks +9 lines, -2 lines 0 comments Download
M cc/resources/image_copy_raster_worker_pool.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 5 chunks +13 lines, -21 lines 0 comments Download
M cc/resources/image_raster_worker_pool.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 2 chunks +7 lines, -1 line 0 comments Download
M cc/resources/image_raster_worker_pool.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 3 chunks +8 lines, -15 lines 0 comments Download
M cc/resources/managed_tile_state.h View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -1 line 0 comments Download
M cc/resources/managed_tile_state.cc View 1 2 3 4 5 6 7 8 9 4 chunks +19 lines, -28 lines 0 comments Download
M cc/resources/picture.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +12 lines, -7 lines 0 comments Download
M cc/resources/picture_layer_tiling.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 2 chunks +7 lines, -1 line 0 comments Download
M cc/resources/picture_layer_tiling.cc View 1 2 3 4 5 6 7 8 9 10 2 chunks +5 lines, -4 lines 0 comments Download
M cc/resources/picture_layer_tiling_set.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 2 chunks +7 lines, -1 line 0 comments Download
M cc/resources/picture_layer_tiling_set.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +6 lines, -5 lines 0 comments Download
M cc/resources/picture_pile_base.h View 1 2 3 4 5 6 7 8 9 2 chunks +4 lines, -1 line 0 comments Download
M cc/resources/picture_pile_base.cc View 1 2 3 4 5 6 7 8 9 3 chunks +3 lines, -4 lines 0 comments Download
M cc/resources/pixel_buffer_raster_worker_pool.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 2 chunks +9 lines, -2 lines 0 comments Download
M cc/resources/pixel_buffer_raster_worker_pool.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 4 chunks +13 lines, -22 lines 0 comments Download
M cc/resources/raster_mode.h View 1 2 3 4 5 6 7 8 9 2 chunks +3 lines, -1 line 0 comments Download
M cc/resources/raster_mode.cc View 1 2 3 4 5 6 7 8 9 1 chunk +4 lines, -7 lines 0 comments Download
M cc/resources/tile.h View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -1 line 0 comments Download
M cc/resources/tile.cc View 1 2 3 4 5 6 7 8 9 2 chunks +22 lines, -10 lines 0 comments Download
M cc/resources/tile_manager.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 3 chunks +13 lines, -4 lines 0 comments Download
M cc/resources/tile_manager.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 5 chunks +26 lines, -17 lines 0 comments Download
M cc/resources/tile_priority.h View 1 2 3 4 5 6 7 8 9 7 chunks +8 lines, -10 lines 0 comments Download
M cc/resources/tile_priority.cc View 1 2 3 4 5 6 7 8 9 1 chunk +36 lines, -51 lines 0 comments Download
M cc/scheduler/delay_based_time_source.h View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +7 lines, -2 lines 0 comments Download
M cc/scheduler/delay_based_time_source.cc View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +14 lines, -19 lines 0 comments Download
M cc/scheduler/scheduler.h View 1 2 3 4 5 6 7 8 9 10 11 3 chunks +5 lines, -2 lines 0 comments Download
M cc/scheduler/scheduler.cc View 1 2 3 4 5 6 7 8 9 10 11 8 chunks +50 lines, -45 lines 0 comments Download
M cc/scheduler/scheduler_settings.h View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +8 lines, -2 lines 0 comments Download
M cc/scheduler/scheduler_settings.cc View 1 2 3 4 5 6 7 8 9 10 11 3 chunks +6 lines, -3 lines 0 comments Download
M cc/scheduler/scheduler_state_machine.h View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +6 lines, -1 line 0 comments Download
M cc/scheduler/scheduler_state_machine.cc View 1 2 3 4 5 6 7 8 9 10 11 12 4 chunks +87 lines, -86 lines 0 comments Download
M cc/scheduler/scheduler_state_machine_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 5 chunks +11 lines, -8 lines 0 comments Download
M cc/scheduler/scheduler_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 7 chunks +16 lines, -15 lines 0 comments Download
M cc/test/fake_proxy.h View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -1 line 0 comments Download
M cc/test/fake_proxy.cc View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -3 lines 0 comments Download
M cc/trees/layer_tree_host.h View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -1 line 0 comments Download
M cc/trees/layer_tree_host.cc View 1 2 3 4 5 6 7 8 9 2 chunks +5 lines, -4 lines 0 comments Download
M cc/trees/layer_tree_host_impl.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +12 lines, -4 lines 0 comments Download
M cc/trees/layer_tree_host_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 5 chunks +71 lines, -31 lines 0 comments Download
M cc/trees/layer_tree_impl.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +7 lines, -1 line 0 comments Download
M cc/trees/layer_tree_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +9 lines, -11 lines 0 comments Download
M cc/trees/proxy.h View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +7 lines, -3 lines 0 comments Download
M cc/trees/proxy.cc View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +0 lines, -4 lines 0 comments Download
M cc/trees/single_thread_proxy.h View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -1 line 0 comments Download
M cc/trees/single_thread_proxy.cc View 1 2 3 4 5 6 7 8 9 1 chunk +9 lines, -12 lines 0 comments Download
M cc/trees/thread_proxy.h View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +2 lines, -4 lines 0 comments Download
M cc/trees/thread_proxy.cc View 1 2 3 4 5 6 7 8 9 10 11 3 chunks +8 lines, -32 lines 0 comments Download

Messages

Total messages: 43 (0 generated)
yurys
6 years, 5 months ago (2014-07-09 14:58:27 UTC) #1
yurys
This code is actually ported from Blink: https://code.google.com/p/chromium/codesearch#chromium/src/third_party/WebKit/Source/platform/TracedValue.h&q=TracedValue.h&sq=package:chromium&type=cs
6 years, 5 months ago (2014-07-09 15:01:16 UTC) #2
alph
lgtm https://codereview.chromium.org/380763002/diff/1/base/debug/trace_event_argument_unittest.cc File base/debug/trace_event_argument_unittest.cc (right): https://codereview.chromium.org/380763002/diff/1/base/debug/trace_event_argument_unittest.cc#newcode31 base/debug/trace_event_argument_unittest.cc:31: .SetInteger("i1", 2014) Maybe use paddings to express the ...
6 years, 5 months ago (2014-07-09 15:03:53 UTC) #3
yurys
https://codereview.chromium.org/380763002/diff/1/base/debug/trace_event_argument_unittest.cc File base/debug/trace_event_argument_unittest.cc (right): https://codereview.chromium.org/380763002/diff/1/base/debug/trace_event_argument_unittest.cc#newcode31 base/debug/trace_event_argument_unittest.cc:31: .SetInteger("i1", 2014) On 2014/07/09 15:03:53, alph wrote: > Maybe ...
6 years, 5 months ago (2014-07-09 15:04:54 UTC) #4
yurys
@nduca: could you review this?
6 years, 5 months ago (2014-07-10 07:23:51 UTC) #5
caseq
https://codereview.chromium.org/380763002/diff/40001/base/debug/trace_event_argument.h File base/debug/trace_event_argument.h (right): https://codereview.chromium.org/380763002/diff/40001/base/debug/trace_event_argument.h#newcode166 base/debug/trace_event_argument.h:166: static const size_t nestingLevel = 1; nit: kNestingLevel? Also, ...
6 years, 5 months ago (2014-07-10 12:42:44 UTC) #6
yurys
https://codereview.chromium.org/380763002/diff/40001/base/debug/trace_event_argument.h File base/debug/trace_event_argument.h (right): https://codereview.chromium.org/380763002/diff/40001/base/debug/trace_event_argument.h#newcode166 base/debug/trace_event_argument.h:166: static const size_t nestingLevel = 1; On 2014/07/10 12:42:44, ...
6 years, 5 months ago (2014-07-10 12:50:50 UTC) #7
dsinclair
What do we template the array and dictionary since, as far as I can see ...
6 years, 5 months ago (2014-07-10 13:32:14 UTC) #8
yurys
On 2014/07/10 13:32:14, dsinclair wrote: > What do we template the array and dictionary since, ...
6 years, 5 months ago (2014-07-10 15:06:29 UTC) #9
dsinclair
On 2014/07/10 15:06:29, yurys wrote: > On 2014/07/10 13:32:14, dsinclair wrote: > > What do ...
6 years, 5 months ago (2014-07-10 15:17:28 UTC) #10
yurys
On 2014/07/10 15:17:28, dsinclair wrote: > On 2014/07/10 15:06:29, yurys wrote: > > On 2014/07/10 ...
6 years, 5 months ago (2014-07-10 15:24:28 UTC) #11
yurys
Updated patch, ptal.
6 years, 5 months ago (2014-07-11 15:34:28 UTC) #12
yurys
@dsinclair: please do OWNERS review.
6 years, 5 months ago (2014-07-14 12:04:50 UTC) #13
dsinclair
lgtm
6 years, 5 months ago (2014-07-14 13:42:19 UTC) #14
yurys
willchan@chromium.org: Please review changes in base/BUILD.gn base/base.gyp base/base.gypi
6 years, 5 months ago (2014-07-14 14:35:40 UTC) #15
willchan no longer on Chromium
I just skimmed it, but it looks like there are still some webkitisms in the ...
6 years, 5 months ago (2014-07-14 15:21:46 UTC) #16
yurys
https://codereview.chromium.org/380763002/diff/80001/base/debug/trace_event_argument.h File base/debug/trace_event_argument.h (right): https://codereview.chromium.org/380763002/diff/80001/base/debug/trace_event_argument.h#newcode50 base/debug/trace_event_argument.h:50: std::vector<Value*> m_stack; On 2014/07/14 15:21:46, willchan wrote: > Should ...
6 years, 5 months ago (2014-07-14 16:16:30 UTC) #17
willchan no longer on Chromium
https://codereview.chromium.org/380763002/diff/80001/base/debug/trace_event_argument.h File base/debug/trace_event_argument.h (right): https://codereview.chromium.org/380763002/diff/80001/base/debug/trace_event_argument.h#newcode50 base/debug/trace_event_argument.h:50: std::vector<Value*> m_stack; On 2014/07/14 16:16:30, yurys wrote: > On ...
6 years, 5 months ago (2014-07-14 16:49:22 UTC) #18
willchan no longer on Chromium
https://codereview.chromium.org/380763002/diff/80001/base/debug/trace_event_argument.h File base/debug/trace_event_argument.h (right): https://codereview.chromium.org/380763002/diff/80001/base/debug/trace_event_argument.h#newcode50 base/debug/trace_event_argument.h:50: std::vector<Value*> m_stack; On 2014/07/14 16:49:22, willchan wrote: > On ...
6 years, 5 months ago (2014-07-14 16:50:40 UTC) #19
nduca
you're not moving cc's traced value over to this and instead leaving that as debt ...
6 years, 5 months ago (2014-07-15 02:09:40 UTC) #20
yurys
On 2014/07/14 16:50:40, willchan wrote: > https://codereview.chromium.org/380763002/diff/80001/base/debug/trace_event_argument.h > File base/debug/trace_event_argument.h (right): > > https://codereview.chromium.org/380763002/diff/80001/base/debug/trace_event_argument.h#newcode50 > ...
6 years, 5 months ago (2014-07-15 09:11:26 UTC) #21
yurys
On 2014/07/15 02:09:40, nduca wrote: > you're not moving cc's traced value over to this ...
6 years, 5 months ago (2014-07-15 15:38:03 UTC) #22
dsinclair
On 2014/07/15 at 15:38:03, yurys wrote: > On 2014/07/15 02:09:40, nduca wrote: > > you're ...
6 years, 5 months ago (2014-07-15 16:07:54 UTC) #23
alph
On 2014/07/15 15:38:03, yurys wrote: > On 2014/07/15 02:09:40, nduca wrote: > > you're not ...
6 years, 5 months ago (2014-07-16 14:20:17 UTC) #24
yurys
On 2014/07/16 14:20:17, alph wrote: > 6) > I can suggest a slightly modified 1) ...
6 years, 5 months ago (2014-07-16 14:24:17 UTC) #25
yurys
@nduca: are you OK with option (5)? If so I will update cc/ code to ...
6 years, 5 months ago (2014-07-16 14:25:56 UTC) #26
yurys
On 2014/07/15 02:09:40, nduca wrote: > you're not moving cc's traced value over to this ...
6 years, 5 months ago (2014-07-25 14:54:40 UTC) #27
nduca
im very very sorry for the delayed review. lgtm. https://codereview.chromium.org/380763002/diff/240001/cc/base/math_util.h File cc/base/math_util.h (left): https://codereview.chromium.org/380763002/diff/240001/cc/base/math_util.h#oldcode186 cc/base/math_util.h:186: ...
6 years, 4 months ago (2014-07-30 07:52:33 UTC) #28
yurys
On 2014/07/30 07:52:33, nduca wrote: > im very very sorry for the delayed review. lgtm. ...
6 years, 4 months ago (2014-07-30 09:44:58 UTC) #29
yurys
https://codereview.chromium.org/380763002/diff/240001/cc/base/math_util.h File cc/base/math_util.h (left): https://codereview.chromium.org/380763002/diff/240001/cc/base/math_util.h#oldcode186 cc/base/math_util.h:186: static scoped_ptr<base::Value> AsValue(const gfx::BoxF& box); On 2014/07/30 07:52:32, nduca ...
6 years, 4 months ago (2014-07-30 14:41:17 UTC) #30
yurys
@willchan: Please review changes in base/BUILD.gn base/base.gyp base/base.gypi
6 years, 4 months ago (2014-07-30 14:42:11 UTC) #31
willchan no longer on Chromium
lgtm, only have nits https://codereview.chromium.org/380763002/diff/280001/base/debug/trace_event_argument.cc File base/debug/trace_event_argument.cc (right): https://codereview.chromium.org/380763002/diff/280001/base/debug/trace_event_argument.cc#newcode18 base/debug/trace_event_argument.cc:18: DCHECK(stack_.size() == 1); You should ...
6 years, 4 months ago (2014-07-30 15:56:17 UTC) #32
yurys
https://codereview.chromium.org/380763002/diff/280001/base/debug/trace_event_argument.cc File base/debug/trace_event_argument.cc (right): https://codereview.chromium.org/380763002/diff/280001/base/debug/trace_event_argument.cc#newcode18 base/debug/trace_event_argument.cc:18: DCHECK(stack_.size() == 1); On 2014/07/30 15:56:16, willchan wrote: > ...
6 years, 4 months ago (2014-07-31 12:06:10 UTC) #33
yurys
The CQ bit was checked by yurys@chromium.org
6 years, 4 months ago (2014-07-31 12:06:23 UTC) #34
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/yurys@chromium.org/380763002/290001
6 years, 4 months ago (2014-07-31 12:07:42 UTC) #35
yurys
The CQ bit was checked by yurys@chromium.org
6 years, 4 months ago (2014-07-31 12:43:08 UTC) #36
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/yurys@chromium.org/380763002/310001
6 years, 4 months ago (2014-07-31 12:44:35 UTC) #37
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: android_aosp on tryserver.chromium.linux ...
6 years, 4 months ago (2014-07-31 16:06:39 UTC) #38
commit-bot: I haz the power
Change committed as 286849
6 years, 4 months ago (2014-07-31 17:59:37 UTC) #39
erikchen
A revert of this CL has been created in https://codereview.chromium.org/421183003/ by erikchen@chromium.org. The reason for ...
6 years, 4 months ago (2014-07-31 18:52:46 UTC) #40
yurys
The CQ bit was checked by yurys@chromium.org
6 years, 4 months ago (2014-08-01 09:35:42 UTC) #41
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/yurys@chromium.org/380763002/350001
6 years, 4 months ago (2014-08-01 09:38:55 UTC) #42
yurys
6 years, 4 months ago (2014-08-01 13:10:56 UTC) #43
Message was sent while issue was closed.
Committed patchset #19 manually as 286984 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698