Migrate scoped thread timers to base/metrics. [chromium/src : main]

0 views
Skip to first unread message

Alex Turner (Gerrit)

unread,
Jun 26, 2024, 2:23:01 PMJun 26
to Tanushree Bisht, Tricium, Alexei Svitkine, Robert Kaplow, Mark Mentovai, Zainab Rizvi, Mirko Bonadei, Jerome Jiang, Chromium LUCI CQ, AyeAye, penghuan...@chromium.org, fgal...@chromium.org, mar...@chromium.org, devtools...@chromium.org, cblume...@chromium.org, feature-me...@chromium.org, jz...@chromium.org, asvitki...@chromium.org, blundell+...@chromium.org, subresource-f...@chromium.org, chromiumme...@microsoft.com
Attention needed from Alexei Svitkine, Mark Mentovai, Robert Kaplow and Tanushree Bisht

Alex Turner added 5 comments

Patchset-level comments
File-level comment, Patchset 10:
Alexei Svitkine . unresolved

We already have some scoped timers in base/metrics, e.g.:

https://source.chromium.org/chromium/chromium/src/+/main:base/metrics/histogram_functions.h;drc=ce31a6f9e56b1ff3127b285f63022e095da04103;l=287
(And the corresponding macro).

I didn't see a discussion of how this differs? I don't think we should have both, so if we think these other ones are better (in what way?), we should replace the use of that one with these. And they shouldn't be scattered across different files...

Tanushree Bisht

These ones are thread timers whereas those are wall timers that will replace macro usage. See context: https://issues.chromium.org/issues/336333963

And you bring up a good point actually in unifying these to the same files. Originally this change was made just to move everything to base/metrics so it could be used outside of the subresource filter component. Made the necessary adjustments by moving things to the histogram macros/functions files accordingly (in particular splitting up time_measurements.h/cc).

Alex Turner

Yeah, I wonder if we should instead be expanding the existing base implementations to also allow for thread timers rather than copying over the subresource filter implementations.

File base/metrics/histogram_functions.cc
Line 269, Patchset 16 (Latest):ScopedUmaHistogramThreadTimer::ScopedUmaHistogramThreadTimer(
Alex Turner . unresolved

Should we be trying to align this with how ScopedUmaHistogramTimer works other than the timing source being different?

File base/metrics/histogram_macros_internal.h
Line 275, Patchset 16 (Latest):#define IMPL_SCOPED_UMA_HISTOGRAM_TIMER_EXPANDER( \
Alex Turner . unresolved

nit: maybe convert IMPL -> INTERNAL to match

Line 275, Patchset 16 (Latest):#define IMPL_SCOPED_UMA_HISTOGRAM_TIMER_EXPANDER( \
Alex Turner . unresolved

Hmm, this exactly matches the name of an above helper (other than IMPL vs INTERNAL). I think we should probably be either consolidating or changing naming to account for any differences.

File base/metrics/scoped_timers.h
Line 26, Patchset 16 (Parent):namespace impl {
Alex Turner . unresolved

Should we be keeping internal?

Open in Gerrit

Related details

Attention is currently required from:
  • Alexei Svitkine
  • Mark Mentovai
  • Robert Kaplow
  • Tanushree Bisht
Submit Requirements:
  • requirement satisfiedCode-Coverage
  • requirement is not satisfiedCode-Review
  • requirement is not satisfiedNo-Unresolved-Comments
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
Gerrit-MessageType: comment
Gerrit-Project: chromium/src
Gerrit-Branch: main
Gerrit-Change-Id: I3d8275a0f7d9707f0c51dff5efd831f62caac85a
Gerrit-Change-Number: 5645725
Gerrit-PatchSet: 16
Gerrit-Owner: Tanushree Bisht <ta...@google.com>
Gerrit-Reviewer: Alex Turner <ale...@chromium.org>
Gerrit-Reviewer: Alexei Svitkine <asvi...@chromium.org>
Gerrit-Reviewer: Mark Mentovai <ma...@chromium.org>
Gerrit-Reviewer: Robert Kaplow <rka...@chromium.org>
Gerrit-Reviewer: Tanushree Bisht <ta...@google.com>
Gerrit-Reviewer: Zainab Rizvi <riz...@google.com>
Gerrit-CC: Jerome Jiang <ji...@chromium.org>
Gerrit-CC: Mirko Bonadei <mbon...@chromium.org>
Gerrit-Attention: Tanushree Bisht <ta...@google.com>
Gerrit-Attention: Alexei Svitkine <asvi...@chromium.org>
Gerrit-Attention: Robert Kaplow <rka...@chromium.org>
Gerrit-Attention: Mark Mentovai <ma...@chromium.org>
Gerrit-Comment-Date: Wed, 26 Jun 2024 18:22:49 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: Tanushree Bisht <ta...@google.com>
Comment-In-Reply-To: Alexei Svitkine <asvi...@chromium.org>
satisfied_requirement
unsatisfied_requirement
open
diffy

Tanushree Bisht (Gerrit)

unread,
Jun 26, 2024, 3:20:53 PMJun 26
to Tricium, Alexei Svitkine, Robert Kaplow, Mark Mentovai, Zainab Rizvi, Alex Turner, Mirko Bonadei, Jerome Jiang, Chromium LUCI CQ, AyeAye, penghuan...@chromium.org, fgal...@chromium.org, mar...@chromium.org, devtools...@chromium.org, cblume...@chromium.org, feature-me...@chromium.org, jz...@chromium.org, asvitki...@chromium.org, blundell+...@chromium.org, subresource-f...@chromium.org, chromiumme...@microsoft.com
Attention needed from Alex Turner, Alexei Svitkine, Mark Mentovai and Robert Kaplow

Tanushree Bisht added 1 comment

Patchset-level comments
Alexei Svitkine . unresolved

We already have some scoped timers in base/metrics, e.g.:

https://source.chromium.org/chromium/chromium/src/+/main:base/metrics/histogram_functions.h;drc=ce31a6f9e56b1ff3127b285f63022e095da04103;l=287
(And the corresponding macro).

I didn't see a discussion of how this differs? I don't think we should have both, so if we think these other ones are better (in what way?), we should replace the use of that one with these. And they shouldn't be scattered across different files...

Tanushree Bisht

These ones are thread timers whereas those are wall timers that will replace macro usage. See context: https://issues.chromium.org/issues/336333963

And you bring up a good point actually in unifying these to the same files. Originally this change was made just to move everything to base/metrics so it could be used outside of the subresource filter component. Made the necessary adjustments by moving things to the histogram macros/functions files accordingly (in particular splitting up time_measurements.h/cc).

Alex Turner

Yeah, I wonder if we should instead be expanding the existing base implementations to also allow for thread timers rather than copying over the subresource filter implementations.

Tanushree Bisht

That sounds like a good idea. WDYT about having that change be a follow-up for later? If it sounds good, I can file a bug for it.

Currently, we want to prioritize changing the anti-fingerprinting call-sites to use these to obtain metrics. Once we have those, we can migrate to the consolidated implementation whenever it's ready?

Open in Gerrit

Related details

Attention is currently required from:
  • Alex Turner
  • Alexei Svitkine
  • Mark Mentovai
  • Robert Kaplow
Submit Requirements:
  • requirement satisfiedCode-Coverage
  • requirement is not satisfiedCode-Review
  • requirement is not satisfiedNo-Unresolved-Comments
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
Gerrit-MessageType: comment
Gerrit-Project: chromium/src
Gerrit-Branch: main
Gerrit-Change-Id: I3d8275a0f7d9707f0c51dff5efd831f62caac85a
Gerrit-Change-Number: 5645725
Gerrit-PatchSet: 16
Gerrit-Owner: Tanushree Bisht <ta...@google.com>
Gerrit-Reviewer: Alex Turner <ale...@chromium.org>
Gerrit-Reviewer: Alexei Svitkine <asvi...@chromium.org>
Gerrit-Reviewer: Mark Mentovai <ma...@chromium.org>
Gerrit-Reviewer: Robert Kaplow <rka...@chromium.org>
Gerrit-Reviewer: Tanushree Bisht <ta...@google.com>
Gerrit-Reviewer: Zainab Rizvi <riz...@google.com>
Gerrit-CC: Jerome Jiang <ji...@chromium.org>
Gerrit-CC: Mirko Bonadei <mbon...@chromium.org>
Gerrit-Attention: Alex Turner <ale...@chromium.org>
Gerrit-Attention: Alexei Svitkine <asvi...@chromium.org>
Gerrit-Attention: Robert Kaplow <rka...@chromium.org>
Gerrit-Attention: Mark Mentovai <ma...@chromium.org>
Gerrit-Comment-Date: Wed, 26 Jun 2024 19:20:41 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: Tanushree Bisht <ta...@google.com>
Comment-In-Reply-To: Alex Turner <ale...@chromium.org>
Comment-In-Reply-To: Alexei Svitkine <asvi...@chromium.org>
satisfied_requirement
unsatisfied_requirement
open
diffy

Alex Turner (Gerrit)

unread,
Jun 26, 2024, 4:20:09 PMJun 26
to Tanushree Bisht, Tricium, Alexei Svitkine, Robert Kaplow, Mark Mentovai, Zainab Rizvi, Mirko Bonadei, Jerome Jiang, Chromium LUCI CQ, AyeAye, penghuan...@chromium.org, fgal...@chromium.org, mar...@chromium.org, devtools...@chromium.org, cblume...@chromium.org, feature-me...@chromium.org, jz...@chromium.org, asvitki...@chromium.org, blundell+...@chromium.org, subresource-f...@chromium.org, chromiumme...@microsoft.com
Attention needed from Alexei Svitkine, Mark Mentovai, Robert Kaplow and Tanushree Bisht

Alex Turner added 1 comment

Patchset-level comments
Alexei Svitkine . unresolved

We already have some scoped timers in base/metrics, e.g.:

https://source.chromium.org/chromium/chromium/src/+/main:base/metrics/histogram_functions.h;drc=ce31a6f9e56b1ff3127b285f63022e095da04103;l=287
(And the corresponding macro).

I didn't see a discussion of how this differs? I don't think we should have both, so if we think these other ones are better (in what way?), we should replace the use of that one with these. And they shouldn't be scattered across different files...

Tanushree Bisht

These ones are thread timers whereas those are wall timers that will replace macro usage. See context: https://issues.chromium.org/issues/336333963

And you bring up a good point actually in unifying these to the same files. Originally this change was made just to move everything to base/metrics so it could be used outside of the subresource filter component. Made the necessary adjustments by moving things to the histogram macros/functions files accordingly (in particular splitting up time_measurements.h/cc).

Alex Turner

Yeah, I wonder if we should instead be expanding the existing base implementations to also allow for thread timers rather than copying over the subresource filter implementations.

Tanushree Bisht

That sounds like a good idea. WDYT about having that change be a follow-up for later? If it sounds good, I can file a bug for it.

Currently, we want to prioritize changing the anti-fingerprinting call-sites to use these to obtain metrics. Once we have those, we can migrate to the consolidated implementation whenever it's ready?

Alex Turner

I think the fingerprinting protection filter should already be able to use these as they're in //components/subresource_filter/core. If so, I'm not sure we need to do this in two cls.

Open in Gerrit

Related details

Attention is currently required from:
  • Alexei Svitkine
  • Mark Mentovai
  • Robert Kaplow
  • Tanushree Bisht
Submit Requirements:
  • requirement satisfiedCode-Coverage
  • requirement is not satisfiedCode-Review
  • requirement is not satisfiedNo-Unresolved-Comments
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
Gerrit-MessageType: comment
Gerrit-Project: chromium/src
Gerrit-Branch: main
Gerrit-Change-Id: I3d8275a0f7d9707f0c51dff5efd831f62caac85a
Gerrit-Change-Number: 5645725
Gerrit-PatchSet: 16
Gerrit-Owner: Tanushree Bisht <ta...@google.com>
Gerrit-Reviewer: Alex Turner <ale...@chromium.org>
Gerrit-Reviewer: Alexei Svitkine <asvi...@chromium.org>
Gerrit-Reviewer: Mark Mentovai <ma...@chromium.org>
Gerrit-Reviewer: Robert Kaplow <rka...@chromium.org>
Gerrit-Reviewer: Tanushree Bisht <ta...@google.com>
Gerrit-Reviewer: Zainab Rizvi <riz...@google.com>
Gerrit-CC: Jerome Jiang <ji...@chromium.org>
Gerrit-CC: Mirko Bonadei <mbon...@chromium.org>
Gerrit-Attention: Tanushree Bisht <ta...@google.com>
Gerrit-Attention: Alexei Svitkine <asvi...@chromium.org>
Gerrit-Attention: Robert Kaplow <rka...@chromium.org>
Gerrit-Attention: Mark Mentovai <ma...@chromium.org>
Gerrit-Comment-Date: Wed, 26 Jun 2024 20:20:00 +0000
satisfied_requirement
unsatisfied_requirement
open
diffy

Tanushree Bisht (Gerrit)

unread,
Jun 26, 2024, 4:56:10 PMJun 26
to Tricium, Alexei Svitkine, Robert Kaplow, Mark Mentovai, Zainab Rizvi, Alex Turner, Mirko Bonadei, Jerome Jiang, Chromium LUCI CQ, AyeAye, penghuan...@chromium.org, fgal...@chromium.org, mar...@chromium.org, devtools...@chromium.org, cblume...@chromium.org, feature-me...@chromium.org, jz...@chromium.org, asvitki...@chromium.org, blundell+...@chromium.org, subresource-f...@chromium.org, chromiumme...@microsoft.com
Attention needed from Alex Turner, Alexei Svitkine, Mark Mentovai and Robert Kaplow

Tanushree Bisht added 1 comment

Patchset-level comments
Alexei Svitkine . unresolved

We already have some scoped timers in base/metrics, e.g.:

https://source.chromium.org/chromium/chromium/src/+/main:base/metrics/histogram_functions.h;drc=ce31a6f9e56b1ff3127b285f63022e095da04103;l=287
(And the corresponding macro).

I didn't see a discussion of how this differs? I don't think we should have both, so if we think these other ones are better (in what way?), we should replace the use of that one with these. And they shouldn't be scattered across different files...

Tanushree Bisht

These ones are thread timers whereas those are wall timers that will replace macro usage. See context: https://issues.chromium.org/issues/336333963

And you bring up a good point actually in unifying these to the same files. Originally this change was made just to move everything to base/metrics so it could be used outside of the subresource filter component. Made the necessary adjustments by moving things to the histogram macros/functions files accordingly (in particular splitting up time_measurements.h/cc).

Alex Turner

Yeah, I wonder if we should instead be expanding the existing base implementations to also allow for thread timers rather than copying over the subresource filter implementations.

Tanushree Bisht

That sounds like a good idea. WDYT about having that change be a follow-up for later? If it sounds good, I can file a bug for it.

Currently, we want to prioritize changing the anti-fingerprinting call-sites to use these to obtain metrics. Once we have those, we can migrate to the consolidated implementation whenever it's ready?

Alex Turner

I think the fingerprinting protection filter should already be able to use these as they're in //components/subresource_filter/core. If so, I'm not sure we need to do this in two cls.

Tanushree Bisht

That's true. This CL was originally started with the goal of moving the timers to base/metrics in order to fulfill an old TODO.

Wanted to clarify some things:

As for your earlier comment in this thread, can you clarify whether "expanding the existing base implementations to also allow for thread timers rather than copying over the subresource filter implementations" maps to the other comment: "Should we be trying to align this with how ScopedUmaHistogramTimer works other than the timing source being different?"?

Or did you mean something else, like expanding the base implementations that existed prior to ScopedUmaHistogramTimer was introduced in https://chromium-review.googlesource.com/c/chromium/src/+/5552873 ?

Open in Gerrit

Related details

Attention is currently required from:
  • Alex Turner
  • Alexei Svitkine
  • Mark Mentovai
  • Robert Kaplow
Submit Requirements:
  • requirement satisfiedCode-Coverage
  • requirement is not satisfiedCode-Review
  • requirement is not satisfiedNo-Unresolved-Comments
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
Gerrit-MessageType: comment
Gerrit-Project: chromium/src
Gerrit-Branch: main
Gerrit-Change-Id: I3d8275a0f7d9707f0c51dff5efd831f62caac85a
Gerrit-Change-Number: 5645725
Gerrit-PatchSet: 16
Gerrit-Owner: Tanushree Bisht <ta...@google.com>
Gerrit-Reviewer: Alex Turner <ale...@chromium.org>
Gerrit-Reviewer: Alexei Svitkine <asvi...@chromium.org>
Gerrit-Reviewer: Mark Mentovai <ma...@chromium.org>
Gerrit-Reviewer: Robert Kaplow <rka...@chromium.org>
Gerrit-Reviewer: Tanushree Bisht <ta...@google.com>
Gerrit-Reviewer: Zainab Rizvi <riz...@google.com>
Gerrit-CC: Jerome Jiang <ji...@chromium.org>
Gerrit-CC: Mirko Bonadei <mbon...@chromium.org>
Gerrit-Attention: Alex Turner <ale...@chromium.org>
Gerrit-Attention: Alexei Svitkine <asvi...@chromium.org>
Gerrit-Attention: Robert Kaplow <rka...@chromium.org>
Gerrit-Attention: Mark Mentovai <ma...@chromium.org>
Gerrit-Comment-Date: Wed, 26 Jun 2024 20:55:58 +0000
satisfied_requirement
unsatisfied_requirement
open
diffy

Alex Turner (Gerrit)

unread,
Jun 27, 2024, 2:37:45 PMJun 27
to Tanushree Bisht, Tricium, Alexei Svitkine, Robert Kaplow, Mark Mentovai, Zainab Rizvi, Mirko Bonadei, Jerome Jiang, Chromium LUCI CQ, AyeAye, penghuan...@chromium.org, fgal...@chromium.org, mar...@chromium.org, devtools...@chromium.org, cblume...@chromium.org, feature-me...@chromium.org, jz...@chromium.org, asvitki...@chromium.org, blundell+...@chromium.org, subresource-f...@chromium.org, chromiumme...@microsoft.com
Attention needed from Alexei Svitkine, Mark Mentovai, Robert Kaplow and Tanushree Bisht

Alex Turner added 1 comment

Patchset-level comments
Alexei Svitkine . unresolved

We already have some scoped timers in base/metrics, e.g.:

https://source.chromium.org/chromium/chromium/src/+/main:base/metrics/histogram_functions.h;drc=ce31a6f9e56b1ff3127b285f63022e095da04103;l=287
(And the corresponding macro).

I didn't see a discussion of how this differs? I don't think we should have both, so if we think these other ones are better (in what way?), we should replace the use of that one with these. And they shouldn't be scattered across different files...

Tanushree Bisht

These ones are thread timers whereas those are wall timers that will replace macro usage. See context: https://issues.chromium.org/issues/336333963

And you bring up a good point actually in unifying these to the same files. Originally this change was made just to move everything to base/metrics so it could be used outside of the subresource filter component. Made the necessary adjustments by moving things to the histogram macros/functions files accordingly (in particular splitting up time_measurements.h/cc).

Alex Turner

Yeah, I wonder if we should instead be expanding the existing base implementations to also allow for thread timers rather than copying over the subresource filter implementations.

Tanushree Bisht

That sounds like a good idea. WDYT about having that change be a follow-up for later? If it sounds good, I can file a bug for it.

Currently, we want to prioritize changing the anti-fingerprinting call-sites to use these to obtain metrics. Once we have those, we can migrate to the consolidated implementation whenever it's ready?

Alex Turner

I think the fingerprinting protection filter should already be able to use these as they're in //components/subresource_filter/core. If so, I'm not sure we need to do this in two cls.

Tanushree Bisht

That's true. This CL was originally started with the goal of moving the timers to base/metrics in order to fulfill an old TODO.

Wanted to clarify some things:

As for your earlier comment in this thread, can you clarify whether "expanding the existing base implementations to also allow for thread timers rather than copying over the subresource filter implementations" maps to the other comment: "Should we be trying to align this with how ScopedUmaHistogramTimer works other than the timing source being different?"?

Or did you mean something else, like expanding the base implementations that existed prior to ScopedUmaHistogramTimer was introduced in https://chromium-review.googlesource.com/c/chromium/src/+/5552873 ?

Alex Turner

That's true. This CL was originally started with the goal of moving the timers to base/metrics in order to fulfill an old TODO.

Wanted to clarify some things:

As for your earlier comment in this thread, can you clarify whether "expanding the existing base implementations to also allow for thread timers rather than copying over the subresource filter implementations" maps to the other comment: "Should we be trying to align this with how ScopedUmaHistogramTimer works other than the timing source being different?"?

Yep, exactly


Or did you mean something else, like expanding the base implementations that existed prior to ScopedUmaHistogramTimer was introduced in https://chromium-review.googlesource.com/c/chromium/src/+/5552873 ?

Open in Gerrit

Related details

Attention is currently required from:
  • Alexei Svitkine
  • Mark Mentovai
  • Robert Kaplow
  • Tanushree Bisht
Submit Requirements:
  • requirement satisfiedCode-Coverage
  • requirement is not satisfiedCode-Review
  • requirement is not satisfiedNo-Unresolved-Comments
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
Gerrit-MessageType: comment
Gerrit-Project: chromium/src
Gerrit-Branch: main
Gerrit-Change-Id: I3d8275a0f7d9707f0c51dff5efd831f62caac85a
Gerrit-Change-Number: 5645725
Gerrit-PatchSet: 16
Gerrit-Owner: Tanushree Bisht <ta...@google.com>
Gerrit-Reviewer: Alex Turner <ale...@chromium.org>
Gerrit-Reviewer: Alexei Svitkine <asvi...@chromium.org>
Gerrit-Reviewer: Mark Mentovai <ma...@chromium.org>
Gerrit-Reviewer: Robert Kaplow <rka...@chromium.org>
Gerrit-Reviewer: Tanushree Bisht <ta...@google.com>
Gerrit-Reviewer: Zainab Rizvi <riz...@google.com>
Gerrit-CC: Jerome Jiang <ji...@chromium.org>
Gerrit-CC: Mirko Bonadei <mbon...@chromium.org>
Gerrit-Attention: Tanushree Bisht <ta...@google.com>
Gerrit-Attention: Alexei Svitkine <asvi...@chromium.org>
Gerrit-Attention: Robert Kaplow <rka...@chromium.org>
Gerrit-Attention: Mark Mentovai <ma...@chromium.org>
Gerrit-Comment-Date: Thu, 27 Jun 2024 18:37:37 +0000
satisfied_requirement
unsatisfied_requirement
open
diffy

Tanushree Bisht (Gerrit)

unread,
Jul 2, 2024, 2:28:30 PMJul 2
to Code Review Nudger, Tricium, Alexei Svitkine, Robert Kaplow, Mark Mentovai, Zainab Rizvi, Alex Turner, Mirko Bonadei, Jerome Jiang, Chromium LUCI CQ, AyeAye, penghuan...@chromium.org, fgal...@chromium.org, mar...@chromium.org, devtools...@chromium.org, cblume...@chromium.org, feature-me...@chromium.org, jz...@chromium.org, asvitki...@chromium.org, blundell+...@chromium.org, subresource-f...@chromium.org, chromiumme...@microsoft.com
Attention needed from Alexei Svitkine, Mark Mentovai and Robert Kaplow

Tanushree Bisht added 1 comment

Patchset-level comments
File-level comment, Patchset 16 (Latest):
Tanushree Bisht . resolved

Pausing on this for now to focus on implementing other metrics as this is not top priority

Open in Gerrit

Related details

Attention is currently required from:
  • Alexei Svitkine
  • Mark Mentovai
  • Robert Kaplow
Submit Requirements:
  • requirement satisfiedCode-Coverage
  • requirement is not satisfiedCode-Review
  • requirement is not satisfiedNo-Unresolved-Comments
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
Gerrit-MessageType: comment
Gerrit-Project: chromium/src
Gerrit-Branch: main
Gerrit-Change-Id: I3d8275a0f7d9707f0c51dff5efd831f62caac85a
Gerrit-Change-Number: 5645725
Gerrit-PatchSet: 16
Gerrit-Owner: Tanushree Bisht <ta...@google.com>
Gerrit-Reviewer: Alex Turner <ale...@chromium.org>
Gerrit-Reviewer: Alexei Svitkine <asvi...@chromium.org>
Gerrit-Reviewer: Mark Mentovai <ma...@chromium.org>
Gerrit-Reviewer: Robert Kaplow <rka...@chromium.org>
Gerrit-Reviewer: Tanushree Bisht <ta...@google.com>
Gerrit-Reviewer: Zainab Rizvi <riz...@google.com>
Gerrit-CC: Code Review Nudger <android-build...@prod.google.com>
Gerrit-CC: Jerome Jiang <ji...@chromium.org>
Gerrit-CC: Mirko Bonadei <mbon...@chromium.org>
Gerrit-Attention: Alexei Svitkine <asvi...@chromium.org>
Gerrit-Attention: Robert Kaplow <rka...@chromium.org>
Gerrit-Attention: Mark Mentovai <ma...@chromium.org>
Gerrit-Comment-Date: Tue, 02 Jul 2024 18:28:22 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
satisfied_requirement
unsatisfied_requirement
open
diffy

Robert Kaplow (Gerrit)

unread,
Jul 5, 2024, 10:34:19 AMJul 5
to Tanushree Bisht, Code Review Nudger, Tricium, Alexei Svitkine, Mark Mentovai, Zainab Rizvi, Alex Turner, Mirko Bonadei, Jerome Jiang, Chromium LUCI CQ, AyeAye, penghuan...@chromium.org, fgal...@chromium.org, mar...@chromium.org, devtools...@chromium.org, cblume...@chromium.org, feature-me...@chromium.org, jz...@chromium.org, asvitki...@chromium.org, blundell+...@chromium.org, subresource-f...@chromium.org, chromiumme...@microsoft.com
Attention needed from Alexei Svitkine, Mark Mentovai and Tanushree Bisht

Robert Kaplow added 1 comment

Patchset-level comments
Robert Kaplow . resolved

if this is paused and Alexei has been following, i'll let him review

Open in Gerrit

Related details

Attention is currently required from:
  • Alexei Svitkine
  • Mark Mentovai
  • Tanushree Bisht
Gerrit-Attention: Tanushree Bisht <ta...@google.com>
Gerrit-Attention: Alexei Svitkine <asvi...@chromium.org>
Gerrit-Attention: Mark Mentovai <ma...@chromium.org>
Gerrit-Comment-Date: Fri, 05 Jul 2024 14:34:08 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
satisfied_requirement
unsatisfied_requirement
open
diffy
Reply all
Reply to author
Forward
0 new messages