[Fetch API][Interop2026] Implement Fetch-compliant Range handling for Blob URLs [chromium/src : main]

0 views
Skip to first unread message

Mayur Patil (Gerrit)

unread,
Jun 15, 2026, 5:24:43 AM (12 days ago) Jun 15
to Jatin Mittal, Himanshu Panwar, android-bu...@system.gserviceaccount.com, Chromium LUCI CQ, chromium...@chromium.org, blink-...@chromium.org, blink-revie...@chromium.org, net-r...@chromium.org, storage...@chromium.org
Attention needed from Jatin Mittal

Mayur Patil added 10 comments

File net/http/http_util.cc
Line 229, Patchset 3 (Latest):// static
Mayur Patil . unresolved
// Parses Fetch's "single range header value" for the "bytes" range
// unit. Optional HTTP tab/space around '=' and '-' is accepted only when
// `allow_whitespace` is true. At least one side of the range must contain
// digits.
Line 230, Patchset 3 (Latest):bool HttpUtil::ParseFetchSingleRange(std::string_view value,
Mayur Patil . unresolved

nit: range_header_value

Line 232, Patchset 3 (Latest): HttpByteRange* range) {
Mayur Patil . unresolved

nit: range_out

Line 233, Patchset 3 (Latest): // Range unit must be "bytes".
Mayur Patil . unresolved

// Fetch requires the range unit to be exactly "bytes".

Line 241, Patchset 3 (Latest): auto skip_ws = [&]() {
Mayur Patil . unresolved

nit: skip_optional_whitespace

Line 249, Patchset 3 (Latest): auto consume_char = [&](char c) {
Mayur Patil . unresolved

Rename lambda parameter as `delimiter` & consume_char with `consume_delimiter`


Also add supporting comment

Line 261, Patchset 3 (Latest): bool overflow = false;
Mayur Patil . unresolved

nit: number_overflowed

and comment : // Fetch parses range numbers as decimal numbers, but HttpByteRange stores them as int64_t, so overflow is treated as parse failure here.

Line 262, Patchset 3 (Latest): auto collect_digits = [&]() -> std::optional<int64_t> {
Mayur Patil . unresolved

nit: parse_decimal_number

Add a supporting comment above this method

Line 271, Patchset 3 (Latest): if (!base::StringToInt64(value.substr(start, pos - start), &parsed)) {
Mayur Patil . unresolved

`ParseInt64` makes the intent much clearer

Line 292, Patchset 3 (Latest): if (!range_start) {
*range = HttpByteRange::Suffix(*range_end);
} else if (range_end) {
*range = HttpByteRange::Bounded(*range_start, *range_end);
} else {
*range = HttpByteRange::RightUnbounded(*range_start);
}
// Reject syntactically valid but invalid ranges.
return range->IsValid();
}
Mayur Patil . unresolved

Do not update range out parameter unless it is validated.

if (range is valid)
then only update range out parameter
Open in Gerrit

Related details

Attention is currently required from:
  • Jatin Mittal
Submit Requirements:
  • requirement satisfiedCode-Coverage
  • requirement is not satisfiedCode-Owners
  • requirement is not satisfiedCode-Review
  • requirement is not satisfiedNo-Unresolved-Comments
  • requirement is not satisfiedReview-Enforcement
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: I8abf9ce8263dd3b2db2e43e728855be09338cee5
Gerrit-Change-Number: 7902659
Gerrit-PatchSet: 3
Gerrit-Owner: Jatin Mittal <jatin...@microsoft.com>
Gerrit-Reviewer: Jatin Mittal <jatin...@microsoft.com>
Gerrit-Reviewer: Mayur Patil <patil...@microsoft.com>
Gerrit-CC: Himanshu Panwar <himp...@microsoft.com>
Gerrit-Attention: Jatin Mittal <jatin...@microsoft.com>
Gerrit-Comment-Date: Mon, 15 Jun 2026 09:24:15 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
satisfied_requirement
unsatisfied_requirement
open
diffy

Mayur Patil (Gerrit)

unread,
Jun 15, 2026, 5:26:28 AM (12 days ago) Jun 15
to Jatin Mittal, Himanshu Panwar, android-bu...@system.gserviceaccount.com, Chromium LUCI CQ, chromium...@chromium.org, blink-...@chromium.org, blink-revie...@chromium.org, net-r...@chromium.org, storage...@chromium.org
Attention needed from Jatin Mittal

Mayur Patil added 1 comment

File net/http/http_util.cc
Line 292, Patchset 3 (Latest): if (!range_start) {
*range = HttpByteRange::Suffix(*range_end);
} else if (range_end) {
*range = HttpByteRange::Bounded(*range_start, *range_end);
} else {
*range = HttpByteRange::RightUnbounded(*range_start);
}
// Reject syntactically valid but invalid ranges.
return range->IsValid();
}
Mayur Patil . unresolved

Do not update range out parameter unless it is validated.

if (range is valid)
then only update range out parameter
Mayur Patil

Instead, the better way would be to remove out parameter and use
optional<HttpByteRange> return type.


if invalid return nullopt

Gerrit-Comment-Date: Mon, 15 Jun 2026 09:25:57 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: Mayur Patil <patil...@microsoft.com>
satisfied_requirement
unsatisfied_requirement
open
diffy

Jatin Mittal (Gerrit)

unread,
Jun 15, 2026, 11:59:44 PM (12 days ago) Jun 15
to Himanshu Panwar, Mayur Patil, android-bu...@system.gserviceaccount.com, Chromium LUCI CQ, chromium...@chromium.org, blink-...@chromium.org, blink-revie...@chromium.org, net-r...@chromium.org, storage...@chromium.org
Attention needed from Mayur Patil

Jatin Mittal added 10 comments

File net/http/http_util.cc
Line 229, Patchset 3:// static
Mayur Patil . resolved
// Parses Fetch's "single range header value" for the "bytes" range
// unit. Optional HTTP tab/space around '=' and '-' is accepted only when
// `allow_whitespace` is true. At least one side of the range must contain
// digits.
Jatin Mittal

Updated the comment

Line 230, Patchset 3:bool HttpUtil::ParseFetchSingleRange(std::string_view value,
Mayur Patil . resolved

nit: range_header_value

Jatin Mittal

Renamed value to range_header_value.

Line 232, Patchset 3: HttpByteRange* range) {
Mayur Patil . resolved

nit: range_out

Jatin Mittal

This is no longer applicable after switching to the std::optional<HttpByteRange> return type, since the range parameter has been removed.

Line 233, Patchset 3: // Range unit must be "bytes".
Mayur Patil . resolved

// Fetch requires the range unit to be exactly "bytes".

Jatin Mittal

Done

Line 241, Patchset 3: auto skip_ws = [&]() {
Mayur Patil . resolved

nit: skip_optional_whitespace

Jatin Mittal

Renamed in the next patchset.

Line 249, Patchset 3: auto consume_char = [&](char c) {
Mayur Patil . resolved

Rename lambda parameter as `delimiter` & consume_char with `consume_delimiter`


Also add supporting comment

Jatin Mittal

both renamed in the next patchset.

Line 261, Patchset 3: bool overflow = false;
Mayur Patil . resolved

nit: number_overflowed

and comment : // Fetch parses range numbers as decimal numbers, but HttpByteRange stores them as int64_t, so overflow is treated as parse failure here.

Jatin Mittal

Done

Line 262, Patchset 3: auto collect_digits = [&]() -> std::optional<int64_t> {
Mayur Patil . resolved

nit: parse_decimal_number

Add a supporting comment above this method

Jatin Mittal

Done

Line 271, Patchset 3: if (!base::StringToInt64(value.substr(start, pos - start), &parsed)) {
Mayur Patil . resolved

`ParseInt64` makes the intent much clearer

Jatin Mittal

Switched to net::ParseInt64(...) in the next patchset.

Line 292, Patchset 3: if (!range_start) {

*range = HttpByteRange::Suffix(*range_end);
} else if (range_end) {
*range = HttpByteRange::Bounded(*range_start, *range_end);
} else {
*range = HttpByteRange::RightUnbounded(*range_start);
}
// Reject syntactically valid but invalid ranges.
return range->IsValid();
}
Mayur Patil . resolved

Do not update range out parameter unless it is validated.

if (range is valid)
then only update range out parameter
Mayur Patil

Instead, the better way would be to remove out parameter and use
optional<HttpByteRange> return type.


if invalid return nullopt

Jatin Mittal

Good point. Switched to a std::optional<HttpByteRange> return type and return std::nullopt on failure, which removes the out parameter and avoids partial updates.

Open in Gerrit

Related details

Attention is currently required from:
  • Mayur Patil
Submit Requirements:
    • requirement satisfiedCode-Coverage
    • requirement is not satisfiedCode-Owners
    • requirement is not satisfiedCode-Review
    • requirement is not satisfiedReview-Enforcement
    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: I8abf9ce8263dd3b2db2e43e728855be09338cee5
    Gerrit-Change-Number: 7902659
    Gerrit-PatchSet: 4
    Gerrit-Owner: Jatin Mittal <jatin...@microsoft.com>
    Gerrit-Reviewer: Jatin Mittal <jatin...@microsoft.com>
    Gerrit-Reviewer: Mayur Patil <patil...@microsoft.com>
    Gerrit-CC: Himanshu Panwar <himp...@microsoft.com>
    Gerrit-Attention: Mayur Patil <patil...@microsoft.com>
    Gerrit-Comment-Date: Tue, 16 Jun 2026 03:59:04 +0000
    satisfied_requirement
    unsatisfied_requirement
    open
    diffy

    Mayur Patil (Gerrit)

    unread,
    Jun 16, 2026, 10:39:27 AM (11 days ago) Jun 16
    to Jatin Mittal, Himanshu Panwar, android-bu...@system.gserviceaccount.com, Chromium LUCI CQ, chromium...@chromium.org, blink-...@chromium.org, blink-revie...@chromium.org, net-r...@chromium.org, storage...@chromium.org
    Attention needed from Jatin Mittal

    Mayur Patil added 1 comment

    File net/http/http_util.cc
    Line 303, Patchset 4 (Latest): HttpByteRange range;
    Mayur Patil . unresolved

    nit: candidate_range

    Open in Gerrit

    Related details

    Attention is currently required from:
    • Jatin Mittal
    Submit Requirements:
      • requirement satisfiedCode-Coverage
      • requirement is not satisfiedCode-Owners
      • requirement is not satisfiedCode-Review
      • requirement is not satisfiedNo-Unresolved-Comments
      • requirement is not satisfiedReview-Enforcement
      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: I8abf9ce8263dd3b2db2e43e728855be09338cee5
      Gerrit-Change-Number: 7902659
      Gerrit-PatchSet: 4
      Gerrit-Owner: Jatin Mittal <jatin...@microsoft.com>
      Gerrit-Reviewer: Jatin Mittal <jatin...@microsoft.com>
      Gerrit-Reviewer: Mayur Patil <patil...@microsoft.com>
      Gerrit-CC: Himanshu Panwar <himp...@microsoft.com>
      Gerrit-Attention: Jatin Mittal <jatin...@microsoft.com>
      Gerrit-Comment-Date: Tue, 16 Jun 2026 14:38:43 +0000
      Gerrit-HasComments: Yes
      Gerrit-Has-Labels: No
      satisfied_requirement
      unsatisfied_requirement
      open
      diffy

      Jatin Mittal (Gerrit)

      unread,
      Jun 16, 2026, 12:17:20 PM (11 days ago) Jun 16
      to Himanshu Panwar, Mayur Patil, android-bu...@system.gserviceaccount.com, Chromium LUCI CQ, chromium...@chromium.org, blink-...@chromium.org, blink-revie...@chromium.org, net-r...@chromium.org, storage...@chromium.org
      Attention needed from Mayur Patil

      Jatin Mittal added 1 comment

      File net/http/http_util.cc
      Line 303, Patchset 4 (Latest): HttpByteRange range;
      Mayur Patil . resolved

      nit: candidate_range

      Jatin Mittal

      Done

      Open in Gerrit

      Related details

      Attention is currently required from:
      • Mayur Patil
      Submit Requirements:
        • requirement satisfiedCode-Coverage
        • requirement is not satisfiedCode-Owners
        • requirement is not satisfiedCode-Review
        • requirement is not satisfiedReview-Enforcement
        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: I8abf9ce8263dd3b2db2e43e728855be09338cee5
        Gerrit-Change-Number: 7902659
        Gerrit-PatchSet: 4
        Gerrit-Owner: Jatin Mittal <jatin...@microsoft.com>
        Gerrit-Reviewer: Jatin Mittal <jatin...@microsoft.com>
        Gerrit-Reviewer: Mayur Patil <patil...@microsoft.com>
        Gerrit-CC: Himanshu Panwar <himp...@microsoft.com>
        Gerrit-Attention: Mayur Patil <patil...@microsoft.com>
        Gerrit-Comment-Date: Tue, 16 Jun 2026 16:16:41 +0000
        Gerrit-HasComments: Yes
        Gerrit-Has-Labels: No
        Comment-In-Reply-To: Mayur Patil <patil...@microsoft.com>
        satisfied_requirement
        unsatisfied_requirement
        open
        diffy

        Mayur Patil (Gerrit)

        unread,
        Jun 17, 2026, 12:51:53 AM (10 days ago) Jun 17
        to Jatin Mittal, kokoro, Himanshu Panwar, android-bu...@system.gserviceaccount.com, Chromium LUCI CQ, chromium...@chromium.org, blink-...@chromium.org, blink-revie...@chromium.org, net-r...@chromium.org, storage...@chromium.org
        Attention needed from Jatin Mittal

        Mayur Patil added 5 comments

        File net/http/http_util.cc
        Line 246, Patchset 5 (Latest): allow_whitespace && pos < range_header_value.size() &&
        Mayur Patil . unresolved

        allow_whitespace is checked everytime inside while loop

        add a condition 
        ```
        if (allow_whitespace)
        return
        ```
        Line 246, Patchset 5 (Latest): allow_whitespace && pos < range_header_value.size() &&
        Mayur Patil . unresolved
        ```
        // Helper: Check if we can still read from the input
        auto in_bounds = [&]() {
        return pos < range_header_value.size();
        };
        ```

        introduce this helper, it will make it more readable

        Line 256, Patchset 5 (Latest): if (pos >= range_header_value.size() ||
        Mayur Patil . unresolved
        ```
        if (!in_bounds()) {
        return false;
        }
        if (range_header_value[pos] != delimiter) {
        return false;
        }

        ```
        Line 298, Patchset 5 (Latest): if (pos != range_header_value.size() || number_overflowed ||
        (!range_start && !range_end)) {
        Mayur Patil . unresolved

        `(in_bounds() || number_overflowed || (!range_start && !range_end))`

        Line 303, Patchset 5 (Latest): HttpByteRange candidate_range;
        Mayur Patil . unresolved
        nit:
        ```
        std::optional<HttpByteRange> candidate_range;
        ```
        and accordingly update the if statement
        ```
        if (!candidate_range->IsValid()) {
        return std::nullopt;
        }
        ```
        Open in Gerrit

        Related details

        Attention is currently required from:
        • Jatin Mittal
        Submit Requirements:
          • requirement satisfiedCode-Coverage
          • requirement is not satisfiedCode-Owners
          • requirement is not satisfiedCode-Review
          • requirement is not satisfiedNo-Unresolved-Comments
          • requirement is not satisfiedReview-Enforcement
          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: I8abf9ce8263dd3b2db2e43e728855be09338cee5
          Gerrit-Change-Number: 7902659
          Gerrit-PatchSet: 5
          Gerrit-Owner: Jatin Mittal <jatin...@microsoft.com>
          Gerrit-Reviewer: Jatin Mittal <jatin...@microsoft.com>
          Gerrit-Reviewer: Mayur Patil <patil...@microsoft.com>
          Gerrit-CC: Himanshu Panwar <himp...@microsoft.com>
          Gerrit-CC: kokoro <noreply...@google.com>
          Gerrit-Attention: Jatin Mittal <jatin...@microsoft.com>
          Gerrit-Comment-Date: Wed, 17 Jun 2026 04:51:19 +0000
          Gerrit-HasComments: Yes
          Gerrit-Has-Labels: No
          satisfied_requirement
          unsatisfied_requirement
          open
          diffy

          Mayur Patil (Gerrit)

          unread,
          Jun 17, 2026, 1:07:03 AM (10 days ago) Jun 17
          to Jatin Mittal, kokoro, Himanshu Panwar, android-bu...@system.gserviceaccount.com, Chromium LUCI CQ, chromium...@chromium.org, blink-...@chromium.org, blink-revie...@chromium.org, net-r...@chromium.org, storage...@chromium.org
          Attention needed from Jatin Mittal

          Mayur Patil added 1 comment

          File net/http/http_util.cc
          Line 237, Patchset 5 (Latest): constexpr std::string_view kBytesUnit = "bytes";
          Mayur Patil . unresolved

          "bytes" is used in multiple places in the file. Can you make this field reusable?
          Move it to an nameless namespace and use it throughout the file?

          satisfied_requirement
          unsatisfied_requirement
          open
          diffy

          Mayur Patil (Gerrit)

          unread,
          Jun 17, 2026, 1:19:35 AM (10 days ago) Jun 17
          to Jatin Mittal, kokoro, Himanshu Panwar, android-bu...@system.gserviceaccount.com, Chromium LUCI CQ, chromium...@chromium.org, blink-...@chromium.org, blink-revie...@chromium.org, net-r...@chromium.org, storage...@chromium.org
          Attention needed from Jatin Mittal

          Mayur Patil added 2 comments

          File net/http/http_util_unittest.cc
          Line 1271, Patchset 5 (Latest):// Verifies that optional HTTP tab/space around '=' and '-' is accepted
          // only when `allow_whitespace` is true, and rejected otherwise.
          TEST(HttpUtilTest, ParseFetchSingleRangeAcceptsWhitespaceWhenAllowed) {
          static constexpr const char* kCases[] = {
          "bytes =5-10", "bytes= 5-10", "bytes=5 -10",
          "bytes=5- 10", "bytes=5\t-\t10",
          };
          for (const char* value : kCases) {
          SCOPED_TRACE(value);
          // Spec-allowed whitespace is accepted only when enabled.
          std::optional<HttpByteRange> range =
          HttpUtil::ParseFetchSingleRange(value, /*allow_whitespace=*/true);
          ASSERT_TRUE(range.has_value());
          EXPECT_EQ(5, range->first_byte_position());
          EXPECT_EQ(10, range->last_byte_position());
          EXPECT_FALSE(
          HttpUtil::ParseFetchSingleRange(value, /*allow_whitespace=*/false)
          .has_value());
          }
          }
          Mayur Patil . unresolved

          The test coverage is good, but consider adding two more test cases:


          1. Boundary value testing: Add a test for edge cases like  bytes=0-  (zero-start open-ended) and  bytes=-1  (single-byte suffix). These are valid but at the boundaries of typical usage.
          2. Strict mode positive cases: The existing ParseFetchSingleRangeAcceptsWhitespaceWhenAllowed  test verifies that  allow_whitespace=false  rejects whitespace, but doesn't verify that valid ranges without whitespace still parse successfully in strict mode. Add a test that confirms  bytes=5-10 ,  bytes=5- , and  bytes=-5  work with  allow_whitespace=false .
          File storage/browser/blob/blob_url_loader.cc
          Line 136, Patchset 5 (Latest): // Reuses the multi-range error code; surfaces to Fetch as a TypeError.
          Mayur Patil . unresolved

          // Range header is invalid or malformed. Fail the request.

          Gerrit-Comment-Date: Wed, 17 Jun 2026 05:19:06 +0000
          Gerrit-HasComments: Yes
          Gerrit-Has-Labels: No
          satisfied_requirement
          unsatisfied_requirement
          open
          diffy

          Himanshu Panwar (Gerrit)

          unread,
          Jun 17, 2026, 2:17:35 AM (10 days ago) Jun 17
          to Jatin Mittal, kokoro, Mayur Patil, android-bu...@system.gserviceaccount.com, Chromium LUCI CQ, chromium...@chromium.org, blink-...@chromium.org, blink-revie...@chromium.org, net-r...@chromium.org, storage...@chromium.org
          Attention needed from Jatin Mittal

          Himanshu Panwar added 2 comments

          File net/http/http_util.cc
          Line 298, Patchset 4: if (pos != range_header_value.size() || number_overflowed ||
          Himanshu Panwar . unresolved
          Overflow: The spec says "interpreted as decimal number" which is conceptually
          unbounded. So `bytes=4-999999999999999999999999` should parse successfully —
          the serving layer would clamp rangeEnd to fullLength-1 later. Currently int64_t
          overflow → std::nullopt → network error.

          Possible fix: If rangeStart parsed OK but rangeEnd overflows, saturate to a
          right-unbounded range (equivalent to `bytes=4-`), since clamping would produce
          the same result anyway.
          Line 312, Patchset 4: if (!range.IsValid()) {
          return std::nullopt;
          Himanshu Panwar . unresolved
          `bytes=-0`: Tracing the spec algorithm — rangeStart="" → null, rangeEnd="0" → 0.
          Neither "both null" nor "start > end" conditions trigger, so it returns (null, 0).
          The spec parser accepts it. Currently rejected via HttpByteRange::IsValid() inside
          the parser, conflating parsing with semantic validity.

          Possible fix: Move the IsValid() check to the caller (BlobURLLoader), so the
          parser is purely syntactic. The caller can then reject "last 0 bytes" as a
          serving-level decision.
          Open in Gerrit

          Related details

          Attention is currently required from:
          • Jatin Mittal
          Submit Requirements:
          • requirement satisfiedCode-Coverage
          • requirement is not satisfiedCode-Owners
          • requirement is not satisfiedCode-Review
          • requirement is not satisfiedNo-Unresolved-Comments
          • requirement is not satisfiedReview-Enforcement
          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: I8abf9ce8263dd3b2db2e43e728855be09338cee5
          Gerrit-Change-Number: 7902659
          Gerrit-PatchSet: 4
          Gerrit-Owner: Jatin Mittal <jatin...@microsoft.com>
          Gerrit-Reviewer: Jatin Mittal <jatin...@microsoft.com>
          Gerrit-Reviewer: Mayur Patil <patil...@microsoft.com>
          Gerrit-CC: Himanshu Panwar <himp...@microsoft.com>
          Gerrit-CC: kokoro <noreply...@google.com>
          Gerrit-Attention: Jatin Mittal <jatin...@microsoft.com>
          Gerrit-Comment-Date: Wed, 17 Jun 2026 06:16:59 +0000
          Gerrit-HasComments: Yes
          Gerrit-Has-Labels: No
          satisfied_requirement
          unsatisfied_requirement
          open
          diffy

          Jatin Mittal (Gerrit)

          unread,
          Jun 17, 2026, 2:13:37 PM (10 days ago) Jun 17
          to kokoro, Himanshu Panwar, Mayur Patil, android-bu...@system.gserviceaccount.com, Chromium LUCI CQ, chromium...@chromium.org, blink-...@chromium.org, blink-revie...@chromium.org, net-r...@chromium.org, storage...@chromium.org
          Attention needed from Himanshu Panwar and Mayur Patil

          Jatin Mittal added 10 comments

          File net/http/http_util.cc
          Line 237, Patchset 5: constexpr std::string_view kBytesUnit = "bytes";
          Mayur Patil . resolved

          "bytes" is used in multiple places in the file. Can you make this field reusable?
          Move it to an nameless namespace and use it throughout the file?

          Jatin Mittal

          Done, hoisted `kBytesUnit` into the anonymous namespace and reused it across the range-parsing helpers to avoid duplicating the `"bytes"` literal.

          Line 246, Patchset 5: allow_whitespace && pos < range_header_value.size() &&
          Mayur Patil . resolved
          ```
          // Helper: Check if we can still read from the input
          auto in_bounds = [&]() {
          return pos < range_header_value.size();
          };
          ```

          introduce this helper, it will make it more readable

          Jatin Mittal

          Done

          Line 246, Patchset 5: allow_whitespace && pos < range_header_value.size() &&
          Mayur Patil . resolved

          allow_whitespace is checked everytime inside while loop

          add a condition 
          ```
          if (allow_whitespace)
          return
          ```
          Jatin Mittal

          Done

          Line 256, Patchset 5: if (pos >= range_header_value.size() ||
          Mayur Patil . resolved
          ```
          if (!in_bounds()) {
          return false;
          }
          if (range_header_value[pos] != delimiter) {
          return false;
          }

          ```
          Jatin Mittal

          updated this to use `in_bounds()`

          Line 298, Patchset 4: if (pos != range_header_value.size() || number_overflowed ||
          Himanshu Panwar . resolved
          Overflow: The spec says "interpreted as decimal number" which is conceptually
          unbounded. So `bytes=4-999999999999999999999999` should parse successfully —
          the serving layer would clamp rangeEnd to fullLength-1 later. Currently int64_t
          overflow → std::nullopt → network error.

          Possible fix: If rangeStart parsed OK but rangeEnd overflows, saturate to a
          right-unbounded range (equivalent to `bytes=4-`), since clamping would produce
          the same result anyway.
          Jatin Mittal

          Done. I updated the parser to saturate overflowing values to `int64_t::max()` rather than rejecting them. This preserves the spec behavior for all range forms (`bytes=4-999...`, `bytes=-999...`, and `bytes=999...-`) while allowing the existing `HttpByteRange::ComputeBounds()` logic to perform the appropriate clamping or rejection. Added `ParseFetchSingleRangeSaturatesOverflow` coverage for these cases as well.

          Line 298, Patchset 5: if (pos != range_header_value.size() || number_overflowed ||
          (!range_start && !range_end)) {
          Mayur Patil . resolved

          `(in_bounds() || number_overflowed || (!range_start && !range_end))`

          Jatin Mittal

          Done

          Line 303, Patchset 5: HttpByteRange candidate_range;
          Mayur Patil . resolved
          nit:
          ```
          std::optional<HttpByteRange> candidate_range;
          ```
          and accordingly update the if statement
          ```
          if (!candidate_range->IsValid()) {
          return std::nullopt;
          }
          ```
          Jatin Mittal

          changed `candidate_range` to `std::optional<HttpByteRange>` and updated the validity check to use `!candidate_range->IsValid()`.

          Line 312, Patchset 4: if (!range.IsValid()) {
          return std::nullopt;
          Himanshu Panwar . resolved
          `bytes=-0`: Tracing the spec algorithm — rangeStart="" → null, rangeEnd="0" → 0.
          Neither "both null" nor "start > end" conditions trigger, so it returns (null, 0).
          The spec parser accepts it. Currently rejected via HttpByteRange::IsValid() inside
          the parser, conflating parsing with semantic validity.

          Possible fix: Move the IsValid() check to the caller (BlobURLLoader), so the
          parser is purely syntactic. The caller can then reject "last 0 bytes" as a
          serving-level decision.
          Jatin Mittal

          Separated parsing from validation. The parser now follows the Fetch spec and accepts bytes=-0 syntactically, while BlobURLLoader rejects semantically invalid ranges during request handling. This keeps parsing spec-compliant and validation at the serving layer.

          File net/http/http_util_unittest.cc
          Line 1271, Patchset 5:// Verifies that optional HTTP tab/space around '=' and '-' is accepted

          // only when `allow_whitespace` is true, and rejected otherwise.
          TEST(HttpUtilTest, ParseFetchSingleRangeAcceptsWhitespaceWhenAllowed) {
          static constexpr const char* kCases[] = {
          "bytes =5-10", "bytes= 5-10", "bytes=5 -10",
          "bytes=5- 10", "bytes=5\t-\t10",
          };
          for (const char* value : kCases) {
          SCOPED_TRACE(value);
          // Spec-allowed whitespace is accepted only when enabled.
          std::optional<HttpByteRange> range =
          HttpUtil::ParseFetchSingleRange(value, /*allow_whitespace=*/true);
          ASSERT_TRUE(range.has_value());
          EXPECT_EQ(5, range->first_byte_position());
          EXPECT_EQ(10, range->last_byte_position());
          EXPECT_FALSE(
          HttpUtil::ParseFetchSingleRange(value, /*allow_whitespace=*/false)
          .has_value());
          }
          }
          Mayur Patil . resolved

          The test coverage is good, but consider adding two more test cases:


          1. Boundary value testing: Add a test for edge cases like  bytes=0-  (zero-start open-ended) and  bytes=-1  (single-byte suffix). These are valid but at the boundaries of typical usage.
          2. Strict mode positive cases: The existing ParseFetchSingleRangeAcceptsWhitespaceWhenAllowed  test verifies that  allow_whitespace=false  rejects whitespace, but doesn't verify that valid ranges without whitespace still parse successfully in strict mode. Add a test that confirms  bytes=5-10 ,  bytes=5- , and  bytes=-5  work with  allow_whitespace=false .
          Jatin Mittal

          Done. Added ParseFetchSingleRangeAcceptsBoundaryValues covering
          bytes=0- and bytes=-1 ,
          and ParseFetchSingleRangeAcceptsValidRangesInStrictMode which confirms
          bytes=5-10, bytes=5-, and bytes=-5 all parse with
          allow_whitespace=false.

          File storage/browser/blob/blob_url_loader.cc
          Line 136, Patchset 5: // Reuses the multi-range error code; surfaces to Fetch as a TypeError.
          Mayur Patil . resolved

          // Range header is invalid or malformed. Fail the request.

          Jatin Mittal

          Done

          Open in Gerrit

          Related details

          Attention is currently required from:
          • Himanshu Panwar
          • Mayur Patil
          Submit Requirements:
            • requirement satisfiedCode-Coverage
            • requirement is not satisfiedCode-Owners
            • requirement is not satisfiedCode-Review
            • requirement is not satisfiedReview-Enforcement
            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: I8abf9ce8263dd3b2db2e43e728855be09338cee5
            Gerrit-Change-Number: 7902659
            Gerrit-PatchSet: 6
            Gerrit-Owner: Jatin Mittal <jatin...@microsoft.com>
            Gerrit-Reviewer: Jatin Mittal <jatin...@microsoft.com>
            Gerrit-Reviewer: Mayur Patil <patil...@microsoft.com>
            Gerrit-CC: Himanshu Panwar <himp...@microsoft.com>
            Gerrit-CC: kokoro <noreply...@google.com>
            Gerrit-Attention: Himanshu Panwar <himp...@microsoft.com>
            Gerrit-Attention: Mayur Patil <patil...@microsoft.com>
            Gerrit-Comment-Date: Wed, 17 Jun 2026 18:13:02 +0000
            Gerrit-HasComments: Yes
            Gerrit-Has-Labels: No
            Comment-In-Reply-To: Himanshu Panwar <himp...@microsoft.com>
            Comment-In-Reply-To: Mayur Patil <patil...@microsoft.com>
            satisfied_requirement
            unsatisfied_requirement
            open
            diffy

            Rakina Zata Amni (Gerrit)

            unread,
            Jun 18, 2026, 10:40:45 PM (9 days ago) Jun 18
            to Jatin Mittal, Adam Rice, Christian Biesinger, Urvang Joshi, Kevin McNee, Per Åhgren, Reid Kleckner, Ale Bzk, Fredrik Söderquist, Lei Zhang, Kenneth R Christiansen, Enterprise Policy Reviews, Ian Vollick, Jiewei Qian, Rijubrata Bhaumik, Mirko Bonadei, Daniel Cheng, Linyu He, Xida Chen, Ilya Biryukov, Josh Karlin, Anurag Simgeker, Sadrul Chowdhury, Hans Wennborg, James Maclean, Mangesh Ghiware, Sam Zackrisson, Mandy, Arnaud, Chromium Metrics Reviews, Michael Moss, Morten Stenshorne, Simon Hangl, Hiroki Nakagawa, Nikhil Nayunigari, Peter Beverloo, Sean Maher, Wang, Wei4, Peter Williamson, Ryan Sultanem, Shu Yang, Zhe Su, Charles Hager, Kevin Babbitt, Andrew Rayskiy, Kenneth Rohde Christiansen, Kentaro Hara, Khushal Sagar, Javier Fernandez, Stephen Chenney, Nico Weber, Hu, Ningxin, Hirokazu Honda, Avi Drissman, CJ DiMeglio, Nate Chapin, Sinan Sahin, Neil Coronado, Menard, Alexis, Zewen Li, Moe Adel, Tommy Li, Peter Collingbourne, (Julie)Jeongeun Kim, Thiabaud Engelbrecht, Yao Xiao, Raphael Kubo da Costa, Hongchan Choi, Jerome Jiang, Olga Gerchikov, Lin, Wanming, Heron Yang, AJITH KUMAR V, Sharon Yang, Fernando Fiori, Thorsten Kober, srirama chandra sekhar, Zijie He, Mark Schillaci, Dirk Schulze, AyeAye Python Dispatcher, kokoro, Himanshu Panwar, Mayur Patil, android-bu...@system.gserviceaccount.com, Chromium LUCI CQ, chromium...@chromium.org, blink-rev...@chromium.org, accessibility-a...@google.com, ddrone...@google.com, webauthn...@chromium.org, ashleynewson+watch...@chromium.org, crisrael+...@google.com, josiah...@chromium.org, xlythe+wa...@google.com, yhanad...@chromium.org, nicolas...@chromium.org, network-ser...@chromium.org, osaul+aut...@google.com, cros-ed...@google.com, halliwe...@chromium.org, droger+w...@chromium.org, mac-r...@chromium.org, meilian...@chromium.org, headless...@chromium.org, kuragin+web-ap...@chromium.org, blink-rev...@chromium.org, yigu+...@chromium.org, jackshira+w...@google.com, mlcui+watch-os-s...@google.com, marq+...@chromium.org, nikhilcn+wat...@google.com, weiluanw...@google.com, bmcquad...@chromium.org, glazuno...@chromium.org, kyungjunle...@google.com, blink-re...@chromium.org, enne...@chromium.org, nektar...@chromium.org, andysjl...@chromium.org, core-web-vita...@chromium.org, chrome-gr...@chromium.org, trewin...@google.com, dtapuska+...@chromium.org, wfh+...@chromuium.org, crisrael+wa...@google.com, dennyh...@google.com, xiaohui...@chromium.org, chikamu...@chromium.org, dtapuska+ch...@chromium.org, michaelcheco+wa...@google.com, keithle...@chromium.org, fenced-fra...@chromium.org, odejesu...@chromium.org, japhet+...@chromium.org, chromeos-gfx-...@google.com, sky+...@chromium.org, yhanada+...@chromium.org, fdoray...@chromium.org, crisrael+w...@google.com, gogeral...@chromium.org, jasonrhee+w...@google.com, danakj...@chromium.org, dmurph+wa...@chromium.org, hansberry+wat...@chromium.org, hanxi...@chromium.org, jackshira+wat...@google.com, mgiuca...@chromium.org, mfoltz+wa...@chromium.org, devtools-re...@chromium.org, lighthouse-eng-extern...@google.com, yuzo+...@chromium.org, ios-actor...@google.com, mfoltz+wa...@chromium.org, blink-revie...@chromium.org, creis...@chromium.org, loading-rev...@chromium.org, tranbaod...@chromium.org, jiajunz+wa...@google.com, bling-ai-foundatio...@google.com, blink-reviews-p...@chromium.org, bnc+...@chromium.org, siashah+au...@chromium.org, rmcelra...@chromium.org, webap...@microsoft.com, jbroma...@chromium.org, bling-alchemy-eng+...@google.com, jackshira+wat...@google.com, speed-metr...@chromium.org, caitkp...@chromium.org, schedule...@chromium.org, fuchsia...@chromium.org, ortuno...@chromium.org, speed-metrics...@chromium.org, yuezhang...@chromium.org, apavlo...@chromium.org, jonmann+wa...@chromium.org, erickun...@chromium.org, khorimoto+wa...@chromium.org, jasonrobe...@google.com, hsuregan+wat...@chromium.org, xiaochen...@chromium.org, borealis-re...@google.com, tommyw+w...@chromium.org, philli...@chromium.org, aji...@samsung.com, cblume...@chromium.org, stevenjb+wa...@chromium.org, yfriedm...@chromium.org, phshah...@chromium.org, pdf-r...@chromium.org, mdjone...@chromium.org, johnche...@chromium.org, cbe-cep-eng...@google.com, joeantonetti+wa...@google.com, chlily...@chromium.org, akingsb+wat...@google.com, jimmyxgong+wat...@chromium.org, ricea...@chromium.org, hiroshig...@chromium.org, print-revi...@chromium.org, hansenmichael...@google.com, dmurph+wat...@chromium.org, blink-rev...@chromium.org, vasilii+watchlis...@chromium.org, peter+watch...@chromium.org, scheduler-...@chromium.org, blink-revi...@chromium.org, wfh+...@chromium.org, jbauma...@chromium.org, knollr+wat...@chromium.org, ffred...@chromium.org, loading-rev...@chromium.org, gab+...@chromium.org, wnwen...@chromium.org, alandin...@chromium.org, cros-enterpris...@chromium.org, jackshira+w...@google.com, crisrael+wa...@google.com, mtomas...@chromium.org, francisjp...@google.com, ios-rev...@chromium.org, telemetr...@chromium.org, chromiumme...@microsoft.com, katie...@chromium.org, mattsimm...@chromium.org, android-web...@chromium.org, dullweb...@chromium.org, eric.c...@apple.com, hais+wat...@google.com, peilinwa...@google.com, prerenderi...@chromium.org, lizeb+watch...@chromium.org, croissant-...@chromium.org, yhanada+...@chromium.org, hirokisa...@chromium.org, blink-re...@chromium.org, translat...@chromium.org, ramyagopa...@google.com, gavinp...@chromium.org, pkotwic...@chromium.org, blink-revi...@chromium.org, khorimoto+w...@chromium.org, cros-essential...@chromium.org, glider...@chromium.org, jackshira+wa...@google.com, chili...@chromium.org, arthursonzog...@chromium.org, mattreyno...@chromium.org, omnibox-...@chromium.org, csharris...@chromium.org, dtraino...@chromium.org, shuche...@chromium.org, bhartmire+w...@google.com, shimazu+se...@chromium.org, kinuko+ser...@chromium.org, armalhotra+a...@google.com, chrome-regionalc...@google.com, dtseng+c...@chromium.org, twelling...@chromium.org, joeantonetti+...@google.com, chadduffin+w...@chromium.org, jshin...@chromium.org, jonmann+wat...@chromium.org, subresource-f...@chromium.org, kinuko+...@chromium.org, ntp-dev...@chromium.org, chromeos-ca...@google.com, csharrison+...@chromium.org, inca-eng...@google.com, feature-me...@chromium.org, jessemcke...@google.com, penghuan...@chromium.org, tmartino+tran...@chromium.org, media-cro...@chromium.org, rsleev...@chromium.org, chromotin...@chromium.org, aixba+wat...@chromium.org, loading...@chromium.org, rkgibso...@chromium.org, roagarw...@chromium.org, chasej...@chromium.org, gavin...@chromium.org, ukai+...@chromium.org, chromium-a...@chromium.org, hsuregan+wa...@chromium.org, webapks-...@chromium.org, pdr+svgw...@chromium.org, stanfie...@google.com, donnd...@chromium.org, xinghui...@chromium.org, jbrom...@chromium.org, ajayramamurth...@google.com, chromium-...@engflow.com, npm+...@chromium.org, sloboda...@chromium.org, lucasrada...@google.com, jackshira+w...@google.com, blink-re...@chromium.org, silv...@chromium.org, mek+w...@chromium.org, crostin...@chromium.org, eme-r...@chromium.org, phoglun...@chromium.org, shimazu...@chromium.org, fgal...@chromium.org, hansberry+wa...@chromium.org, hidehik...@chromium.org, chrome-b...@google.com, tote-eng...@google.com, ajayramamurthy...@google.com, kenjibah...@chromium.org, jackshira+wa...@google.com, eic+...@google.com, wangdanny+fe...@google.com, kinuko...@chromium.org, browser-comp...@chromium.org, pushi+wa...@google.com, pushi+watc...@google.com, chromeos-kio...@google.com, ajwong...@chromium.org, emircan+watch...@chromium.org, derinel+wat...@google.com, loyso...@chromium.org, mfoltz+wa...@chromium.org, nwoked...@chromium.org, dom+...@chromium.org, polard...@google.com, shgar+aut...@google.com, julietlevesque...@google.com, dtseng...@chromium.org, lize...@chromium.org, dmurph+watch...@chromium.org, mkwst+w...@chromium.org, crost...@chromium.org, tburkar...@chromium.org, marinacio...@chromium.org, dmurph+watch...@chromium.org, horo+...@chromium.org, jiajunz+wat...@google.com, gavin...@chromium.org, mercer...@google.com, jophba...@chromium.org, ajayramamurthy+w...@google.com, chrome-intelligence-te...@google.com, ananyasee...@google.com, blink-work...@chromium.org, navigation...@chromium.org, siyua+aut...@chromium.org, stluon...@chromium.org, feature-v...@chromium.org, rsesek...@chromium.org, video-networking...@google.com, lwinston+watc...@google.com, dibyapal+wa...@chromium.org, lens-chrome...@google.com, jonmann+w...@chromium.org, khmel...@chromium.org, cwp-review...@google.com, iclella...@chromium.org, nona+...@chromium.org, petewi...@chromium.org, zol...@webkit.org, chfreme...@chromium.org, aashna...@google.com, vinnypersky+...@google.com, dmurph+watc...@chromium.org, byronle...@chromium.org, yusufo...@chromium.org, asumane...@google.com, ckitaga...@chromium.org, anastas...@google.com, michaelchec...@google.com, nickdiego+wa...@igalia.com, ender...@chromium.org, hansberry+w...@chromium.org, kouhe...@chromium.org, aleventh...@chromium.org, pasko...@chromium.org, dominicc+...@chromium.org, nyquis...@chromium.org, print-rev...@chromium.org, fserb...@chromium.org, jatapiaro+wat...@google.com, iwells...@chromium.org, msrame...@chromium.org, antoniosarto...@chromium.org, gcasto+w...@chromium.org, rginda...@chromium.org, lizeb...@chromium.org, shannc...@chromium.org, media-wi...@chromium.org, xiangdongkong+...@google.com, dmurph+watchin...@chromium.org, mickeybu...@chromium.org, chrome-intell...@chromium.org, mcasas+med...@chromium.org, menghua...@google.com, ajayramamurth...@google.com, yongshun+...@google.com, tgupta...@chromium.org, pmonett...@chromium.org, thegreenf...@chromium.org, ydago...@chromium.org, extension...@chromium.org, moqati-team+chr...@google.com, dfried...@chromium.org, fgorsk...@chromium.org, blink-revi...@chromium.org, edgesto...@microsoft.com, hansberry+wa...@chromium.org, language...@chromium.org, ios-r...@chromium.org, cros-setti...@google.com, arc-review...@google.com, davidj...@chromium.org, ajayramamurt...@google.com, ashleynewson+watch-...@chromium.org, eugeni...@chromium.org, lingqi...@chromium.org, christia...@chromium.org, martijn...@martijnc.be, torne...@chromium.org, pushi+wat...@google.com, mar...@chromium.org, yhanada...@chromium.org, gavinp...@chromium.org, dmblac...@google.com, chrome-tab-group-en...@google.com, kouhei...@chromium.org, vaapi-...@chromium.org, oilpan-rev...@chromium.org, core-timi...@chromium.org, ozone-...@chromium.org, toshikikikuch...@chromium.org, kouhe...@chromium.org, niharm...@google.com, cros-print...@google.com, max+watc...@igalia.com, wychen...@chromium.org, geoffla...@chromium.org, tracing...@chromium.org, zackha...@chromium.org, dewitt...@chromium.org, blink-revie...@chromium.org, longbowei+watc...@google.com, michaelcheco+...@google.com, asvitkine...@chromium.org, alexmo...@chromium.org, jmedle...@chromium.org, gl...@chromium.org, ayman...@chromium.org, gangwu...@chromium.org, spang...@chromium.org, scheduler...@chromium.org, bartek...@chromium.org, olka+...@chromium.org, suetfei+wa...@google.com, rhalava...@chromium.org, cc-...@chromium.org, tbarzi...@chromium.org, tluk+...@chromium.org, shend...@chromium.org, steimel+...@chromium.org, abigailbk...@google.com, longbowei+fe...@google.com, yyhyyh+fee...@google.com, ejcaruso+wa...@chromium.org, ashleydp+fe...@google.com, harringt...@chromium.org, jimmyxgong+w...@chromium.org, estali...@chromium.org, jackshira+wa...@google.com, jimmyxgong+watch...@chromium.org, cros-system-ui-prod...@google.com, ios-web-view...@google.com, dmurph+watchi...@chromium.org, mpdento...@chromium.org, ajayramamurthy...@google.com, oshima...@chromium.org, jeffreycohen+watc...@chromium.org, ios-revie...@chromium.org, cros-report...@google.com, jackshira+...@google.com, chungshe...@google.com, chadduffin+wa...@chromium.org, dclasson+w...@google.com, djacob...@chromium.org, roblia...@chromium.org, hansberry+wa...@chromium.org, rrsilva+wat...@google.com, jdeblas...@chromium.org, kinuko...@chromium.org, jonmann+watc...@chromium.org, dkrahn...@chromium.org, grt+...@chromium.org, blink-rev...@chromium.org, filesapp...@chromium.org, penghu...@chromium.org, dmurph+watchi...@chromium.org, devtools...@chromium.org, loading-re...@chromium.org, hashimo...@chromium.org, titoua...@chromium.org, servicewor...@chromium.org, permissio...@chromium.org, web-schedulin...@chromium.org, agriev...@chromium.org, dcheng+c...@chromium.org, performance-m...@chromium.org, jz...@chromium.org, blink-re...@chromium.org, fmalit...@chromium.org, security-...@chromium.org, jorgel...@chromium.org, vakh+safe_br...@chromium.org, crmulli...@chromium.org, drott+bl...@chromium.org, hansberry+w...@chromium.org, asvitki...@chromium.org, jdonnel...@chromium.org, dmurph+watching...@chromium.org, zelin+watch-we...@chromium.org, srahim...@chromium.org, blink-...@chromium.org, blink-revie...@chromium.org, net-r...@chromium.org, storage...@chromium.org
            Attention needed from Adam Rice, Himanshu Panwar and Jatin Mittal

            Rakina Zata Amni voted Code-Review+1

            Code-Review+1
            Open in Gerrit

            Related details

            Attention is currently required from:
            • Adam Rice
            • Himanshu Panwar
            • Jatin Mittal
            Submit Requirements:
            • requirement satisfiedCode-Coverage
            • requirement is not satisfiedCode-Owners
            • requirement is not satisfiedCode-Review
            • requirement is not satisfiedReview-Enforcement
            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: I8abf9ce8263dd3b2db2e43e728855be09338cee5
            Gerrit-Change-Number: 7902659
            Gerrit-PatchSet: 9
            Gerrit-Owner: Jatin Mittal <jatin...@microsoft.com>
            Gerrit-Reviewer: Adam Rice <ri...@chromium.org>
            Gerrit-Reviewer: Jatin Mittal <jatin...@microsoft.com>
            Gerrit-Reviewer: Mayur Patil <patil...@microsoft.com>
            Gerrit-Reviewer: Rakina Zata Amni <rak...@chromium.org>
            Gerrit-CC: (Julie)Jeongeun Kim <je_jul...@chromium.org>
            Gerrit-CC: AJITH KUMAR V <aji...@chromium.org>
            Gerrit-CC: Akihiro Ota <akihi...@chromium.org>
            Gerrit-CC: Ale Bzk <ales...@chromium.org>
            Gerrit-CC: Andrew Rayskiy <green...@google.com>
            Gerrit-CC: Anurag Simgeker <anurags...@google.com>
            Gerrit-CC: Avi Drissman <a...@chromium.org>
            Gerrit-CC: AyeAye Python Dispatcher <android-build-ayeay...@system.gserviceaccount.com>
            Gerrit-CC: CJ DiMeglio <lethala...@chromium.org>
            Gerrit-CC: Charles Hager <clh...@google.com>
            Gerrit-CC: Christian Biesinger <cbies...@chromium.org>
            Gerrit-CC: Chromium Metrics Reviews <chromium-met...@google.com>
            Gerrit-CC: Daniel Cheng <dch...@chromium.org>
            Gerrit-CC: Dirk Schulze <dsch...@chromium.org>
            Gerrit-CC: Enterprise Policy Reviews <enterprise-p...@google.com>
            Gerrit-CC: Fernando Fiori <ffi...@microsoft.com>
            Gerrit-CC: Frank Liberato <libe...@chromium.org>
            Gerrit-CC: Fredrik Söderquist <f...@opera.com>
            Gerrit-CC: Hans Wennborg <ha...@chromium.org>
            Gerrit-CC: Heron Yang <hero...@google.com>
            Gerrit-CC: Himanshu Panwar <himp...@microsoft.com>
            Gerrit-CC: Hirokazu Honda <hi...@chromium.org>
            Gerrit-CC: Hiroki Nakagawa <nhi...@chromium.org>
            Gerrit-CC: Hongchan Choi <hong...@chromium.org>
            Gerrit-CC: Hu, Ningxin <ningx...@intel.com>
            Gerrit-CC: Ian Vollick <vol...@chromium.org>
            Gerrit-CC: Ilya Biryukov <ibir...@google.com>
            Gerrit-CC: James Maclean <wjma...@chromium.org>
            Gerrit-CC: Javier Fernandez <jfern...@igalia.com>
            Gerrit-CC: Jerome Jiang <ji...@chromium.org>
            Gerrit-CC: Jiewei Qian <q...@chromium.org>
            Gerrit-CC: Josh Karlin <jka...@chromium.org>
            Gerrit-CC: Kenneth R Christiansen <kenneth.r.c...@intel.com>
            Gerrit-CC: Kenneth Rohde Christiansen <kenneth.ch...@gmail.com>
            Gerrit-CC: Kentaro Hara <har...@chromium.org>
            Gerrit-CC: Kevin Babbitt <kbab...@microsoft.com>
            Gerrit-CC: Kevin McNee <mc...@chromium.org>
            Gerrit-CC: Khushal Sagar <khusha...@chromium.org>
            Gerrit-CC: Lei Zhang <the...@chromium.org>
            Gerrit-CC: Lin, Wanming <wanmi...@intel.com>
            Gerrit-CC: Linyu He <lin...@google.com>
            Gerrit-CC: Mandy, Arnaud <arnaud...@intel.com>
            Gerrit-CC: Mangesh Ghiware <mghi...@google.com>
            Gerrit-CC: Mark Schillaci <mschi...@google.com>
            Gerrit-CC: Menard, Alexis <alexis...@intel.com>
            Gerrit-CC: Michael Moss <mm...@chromium.org>
            Gerrit-CC: Michael Wilson <mjwi...@chromium.org>
            Gerrit-CC: Mirko Bonadei <mbon...@chromium.org>
            Gerrit-CC: Moe Adel <ad...@google.com>
            Gerrit-CC: Morten Stenshorne <mste...@chromium.org>
            Gerrit-CC: Nate Chapin <jap...@chromium.org>
            Gerrit-CC: Neil Coronado <ne...@google.com>
            Gerrit-CC: Nektarios Paisios <nek...@chromium.org>
            Gerrit-CC: Nico Weber <tha...@chromium.org>
            Gerrit-CC: Nikhil Nayunigari <nikh...@google.com>
            Gerrit-CC: Olga Gerchikov <gerc...@microsoft.com>
            Gerrit-CC: Per Åhgren <pe...@chromium.org>
            Gerrit-CC: Peter Beverloo <pe...@chromium.org>
            Gerrit-CC: Peter Collingbourne <p...@chromium.org>
            Gerrit-CC: Peter Williamson <pet...@chromium.org>
            Gerrit-CC: Raphael Kubo da Costa <ku...@igalia.com>
            Gerrit-CC: Reid Kleckner <r...@chromium.org>
            Gerrit-CC: Rijubrata Bhaumik <rijubrat...@intel.com>
            Gerrit-CC: Ryan Sultanem <rs...@google.com>
            Gerrit-CC: Sadrul Chowdhury <sad...@chromium.org>
            Gerrit-CC: Sam Zackrisson <sa...@chromium.org>
            Gerrit-CC: Sean Maher <sp...@chromium.org>
            Gerrit-CC: Sharon Yang <yangs...@igalia.com>
            Gerrit-CC: Shu Yang <shu...@google.com>
            Gerrit-CC: Simon Hangl <sim...@google.com>
            Gerrit-CC: Sinan Sahin <sinan...@google.com>
            Gerrit-CC: Stephen Chenney <sche...@chromium.org>
            Gerrit-CC: Thiabaud Engelbrecht <thia...@google.com>
            Gerrit-CC: Thorsten Kober <thor...@google.com>
            Gerrit-CC: Tommy Li <tomm...@chromium.org>
            Gerrit-CC: Urvang Joshi <urv...@chromium.org>
            Gerrit-CC: Wang, Wei4 <wei4...@intel.com>
            Gerrit-CC: Xida Chen <xida...@chromium.org>
            Gerrit-CC: Yao Xiao <yao...@chromium.org>
            Gerrit-CC: Zewen Li <zew...@google.com>
            Gerrit-CC: Zhe Su <su...@chromium.org>
            Gerrit-CC: Zijie He <zij...@google.com>
            Gerrit-CC: srirama chandra sekhar <srir...@samsung.com>
            Gerrit-Attention: Himanshu Panwar <himp...@microsoft.com>
            Gerrit-Attention: Adam Rice <ri...@chromium.org>
            Gerrit-Attention: Jatin Mittal <jatin...@microsoft.com>
            Gerrit-Comment-Date: Fri, 19 Jun 2026 02:40:05 +0000
            Gerrit-HasComments: No
            Gerrit-Has-Labels: Yes
            satisfied_requirement
            unsatisfied_requirement
            open
            diffy

            Takuto Ikuta (Gerrit)

            unread,
            Jun 18, 2026, 10:45:17 PM (9 days ago) Jun 18
            to Jatin Mittal, chrome-b...@google.com, Rakina Zata Amni, Adam Rice, Christian Biesinger, Urvang Joshi, Kevin McNee, Per Åhgren, Reid Kleckner, Ale Bzk, Fredrik Söderquist, Lei Zhang, Kenneth R Christiansen, Enterprise Policy Reviews, Ian Vollick, Jiewei Qian, Rijubrata Bhaumik, Mirko Bonadei, Daniel Cheng, Linyu He, Xida Chen, Ilya Biryukov, Josh Karlin, Anurag Simgeker, Sadrul Chowdhury, Hans Wennborg, James Maclean, Mangesh Ghiware, Sam Zackrisson, Mandy, Arnaud, Chromium Metrics Reviews, Michael Moss, Morten Stenshorne, Simon Hangl, Hiroki Nakagawa, Nikhil Nayunigari, Peter Beverloo, Sean Maher, Wang, Wei4, Peter Williamson, Ryan Sultanem, Shu Yang, Zhe Su, Charles Hager, Kevin Babbitt, Andrew Rayskiy, Kenneth Rohde Christiansen, Kentaro Hara, Khushal Sagar, Javier Fernandez, Stephen Chenney, Nico Weber, Hu, Ningxin, Hirokazu Honda, Avi Drissman, CJ DiMeglio, Nate Chapin, Sinan Sahin, Neil Coronado, Menard, Alexis, Zewen Li, Moe Adel, Tommy Li, Peter Collingbourne, (Julie)Jeongeun Kim, Thiabaud Engelbrecht, Yao Xiao, Raphael Kubo da Costa, Hongchan Choi, Jerome Jiang, Olga Gerchikov, Lin, Wanming, Heron Yang, AJITH KUMAR V, Sharon Yang, Fernando Fiori, Thorsten Kober, srirama chandra sekhar, Zijie He, Mark Schillaci, Dirk Schulze, AyeAye Python Dispatcher, kokoro, Himanshu Panwar, Mayur Patil, android-bu...@system.gserviceaccount.com, Chromium LUCI CQ, chromium...@chromium.org, blink-rev...@chromium.org, accessibility-a...@google.com, ddrone...@google.com, webauthn...@chromium.org, ashleynewson+watch...@chromium.org, crisrael+...@google.com, josiah...@chromium.org, xlythe+wa...@google.com, yhanad...@chromium.org, nicolas...@chromium.org, network-ser...@chromium.org, osaul+aut...@google.com, cros-ed...@google.com, halliwe...@chromium.org, droger+w...@chromium.org, mac-r...@chromium.org, meilian...@chromium.org, headless...@chromium.org, kuragin+web-ap...@chromium.org, blink-rev...@chromium.org, yigu+...@chromium.org, jackshira+w...@google.com, mlcui+watch-os-s...@google.com, marq+...@chromium.org, nikhilcn+wat...@google.com, weiluanw...@google.com, bmcquad...@chromium.org, glazuno...@chromium.org, kyungjunle...@google.com, blink-re...@chromium.org, enne...@chromium.org, nektar...@chromium.org, andysjl...@chromium.org, core-web-vita...@chromium.org, chrome-gr...@chromium.org, trewin...@google.com, dtapuska+...@chromium.org, wfh+...@chromuium.org, crisrael+wa...@google.com, dennyh...@google.com, xiaohui...@chromium.org, chikamu...@chromium.org, dtapuska+ch...@chromium.org, michaelcheco+wa...@google.com, keithle...@chromium.org, fenced-fra...@chromium.org, odejesu...@chromium.org, japhet+...@chromium.org, chromeos-gfx-...@google.com, sky+...@chromium.org, yhanada+...@chromium.org, fdoray...@chromium.org, crisrael+w...@google.com, gogeral...@chromium.org, jasonrhee+w...@google.com, danakj...@chromium.org, dmurph+wa...@chromium.org, hansberry+wat...@chromium.org, hanxi...@chromium.org, jackshira+wat...@google.com, mgiuca...@chromium.org, mfoltz+wa...@chromium.org, devtools-re...@chromium.org, lighthouse-eng-extern...@google.com, yuzo+...@chromium.org, ios-actor...@google.com, mfoltz+wa...@chromium.org, blink-revie...@chromium.org, creis...@chromium.org, loading-rev...@chromium.org, tranbaod...@chromium.org, jiajunz+wa...@google.com, bling-ai-foundatio...@google.com, blink-reviews-p...@chromium.org, bnc+...@chromium.org, siashah+au...@chromium.org, rmcelra...@chromium.org, webap...@microsoft.com, jbroma...@chromium.org, bling-alchemy-eng+...@google.com, jackshira+wat...@google.com, speed-metr...@chromium.org, caitkp...@chromium.org, schedule...@chromium.org, fuchsia...@chromium.org, ortuno...@chromium.org, speed-metrics...@chromium.org, yuezhang...@chromium.org, apavlo...@chromium.org, jonmann+wa...@chromium.org, erickun...@chromium.org, khorimoto+wa...@chromium.org, jasonrobe...@google.com, hsuregan+wat...@chromium.org, xiaochen...@chromium.org, borealis-re...@google.com, tommyw+w...@chromium.org, philli...@chromium.org, aji...@samsung.com, cblume...@chromium.org, stevenjb+wa...@chromium.org, yfriedm...@chromium.org, phshah...@chromium.org, pdf-r...@chromium.org, mdjone...@chromium.org, johnche...@chromium.org, cbe-cep-eng...@google.com, joeantonetti+wa...@google.com, chlily...@chromium.org, akingsb+wat...@google.com, jimmyxgong+wat...@chromium.org, ricea...@chromium.org, hiroshig...@chromium.org, print-revi...@chromium.org, hansenmichael...@google.com, dmurph+wat...@chromium.org, blink-rev...@chromium.org, vasilii+watchlis...@chromium.org, peter+watch...@chromium.org, scheduler-...@chromium.org, blink-revi...@chromium.org, wfh+...@chromium.org, jbauma...@chromium.org, knollr+wat...@chromium.org, ffred...@chromium.org, loading-rev...@chromium.org, gab+...@chromium.org, wnwen...@chromium.org, alandin...@chromium.org, cros-enterpris...@chromium.org, jackshira+w...@google.com, crisrael+wa...@google.com, mtomas...@chromium.org, francisjp...@google.com, ios-rev...@chromium.org, telemetr...@chromium.org, chromiumme...@microsoft.com, katie...@chromium.org, mattsimm...@chromium.org, android-web...@chromium.org, dullweb...@chromium.org, eric.c...@apple.com, hais+wat...@google.com, peilinwa...@google.com, prerenderi...@chromium.org, lizeb+watch...@chromium.org, croissant-...@chromium.org, yhanada+...@chromium.org, hirokisa...@chromium.org, blink-re...@chromium.org, translat...@chromium.org, ramyagopa...@google.com, gavinp...@chromium.org, pkotwic...@chromium.org, blink-revi...@chromium.org, khorimoto+w...@chromium.org, cros-essential...@chromium.org, glider...@chromium.org, jackshira+wa...@google.com, chili...@chromium.org, arthursonzog...@chromium.org, mattreyno...@chromium.org, omnibox-...@chromium.org, csharris...@chromium.org, dtraino...@chromium.org, shuche...@chromium.org, bhartmire+w...@google.com, shimazu+se...@chromium.org, kinuko+ser...@chromium.org, armalhotra+a...@google.com, chrome-regionalc...@google.com, dtseng+c...@chromium.org, twelling...@chromium.org, joeantonetti+...@google.com, chadduffin+w...@chromium.org, jshin...@chromium.org, jonmann+wat...@chromium.org, subresource-f...@chromium.org, kinuko+...@chromium.org, ntp-dev...@chromium.org, chromeos-ca...@google.com, csharrison+...@chromium.org, inca-eng...@google.com, feature-me...@chromium.org, jessemcke...@google.com, penghuan...@chromium.org, tmartino+tran...@chromium.org, media-cro...@chromium.org, rsleev...@chromium.org, chromotin...@chromium.org, aixba+wat...@chromium.org, loading...@chromium.org, rkgibso...@chromium.org, roagarw...@chromium.org, chasej...@chromium.org, gavin...@chromium.org, ukai+...@chromium.org, chromium-a...@chromium.org, hsuregan+wa...@chromium.org, webapks-...@chromium.org, pdr+svgw...@chromium.org, stanfie...@google.com, donnd...@chromium.org, xinghui...@chromium.org, jbrom...@chromium.org, ajayramamurth...@google.com, chromium-...@engflow.com, npm+...@chromium.org, sloboda...@chromium.org, lucasrada...@google.com, jackshira+w...@google.com, blink-re...@chromium.org, silv...@chromium.org, mek+w...@chromium.org, crostin...@chromium.org, eme-r...@chromium.org, phoglun...@chromium.org, shimazu...@chromium.org, fgal...@chromium.org, hansberry+wa...@chromium.org, hidehik...@chromium.org, tote-eng...@google.com, ajayramamurthy...@google.com, kenjibah...@chromium.org, jackshira+wa...@google.com, eic+...@google.com, wangdanny+fe...@google.com, kinuko...@chromium.org, browser-comp...@chromium.org, pushi+wa...@google.com, pushi+watc...@google.com, chromeos-kio...@google.com, ajwong...@chromium.org, emircan+watch...@chromium.org, derinel+wat...@google.com, loyso...@chromium.org, mfoltz+wa...@chromium.org, nwoked...@chromium.org, dom+...@chromium.org, polard...@google.com, shgar+aut...@google.com, julietlevesque...@google.com, dtseng...@chromium.org, lize...@chromium.org, dmurph+watch...@chromium.org, mkwst+w...@chromium.org, crost...@chromium.org, tburkar...@chromium.org, marinacio...@chromium.org, dmurph+watch...@chromium.org, horo+...@chromium.org, jiajunz+wat...@google.com, gavin...@chromium.org, mercer...@google.com, jophba...@chromium.org, ajayramamurthy+w...@google.com, chrome-intelligence-te...@google.com, ananyasee...@google.com, blink-work...@chromium.org, navigation...@chromium.org, siyua+aut...@chromium.org, stluon...@chromium.org, feature-v...@chromium.org, rsesek...@chromium.org, video-networking...@google.com, lwinston+watc...@google.com, dibyapal+wa...@chromium.org, lens-chrome...@google.com, jonmann+w...@chromium.org, khmel...@chromium.org, cwp-review...@google.com, iclella...@chromium.org, nona+...@chromium.org, petewi...@chromium.org, zol...@webkit.org, chfreme...@chromium.org, aashna...@google.com, vinnypersky+...@google.com, dmurph+watc...@chromium.org, byronle...@chromium.org, yusufo...@chromium.org, asumane...@google.com, ckitaga...@chromium.org, anastas...@google.com, michaelchec...@google.com, nickdiego+wa...@igalia.com, ender...@chromium.org, hansberry+w...@chromium.org, kouhe...@chromium.org, aleventh...@chromium.org, pasko...@chromium.org, dominicc+...@chromium.org, nyquis...@chromium.org, print-rev...@chromium.org, fserb...@chromium.org, jatapiaro+wat...@google.com, iwells...@chromium.org, msrame...@chromium.org, antoniosarto...@chromium.org, gcasto+w...@chromium.org, rginda...@chromium.org, lizeb...@chromium.org, shannc...@chromium.org, media-wi...@chromium.org, xiangdongkong+...@google.com, dmurph+watchin...@chromium.org, mickeybu...@chromium.org, chrome-intell...@chromium.org, mcasas+med...@chromium.org, menghua...@google.com, ajayramamurth...@google.com, yongshun+...@google.com, tgupta...@chromium.org, pmonett...@chromium.org, thegreenf...@chromium.org, ydago...@chromium.org, extension...@chromium.org, moqati-team+chr...@google.com, dfried...@chromium.org, fgorsk...@chromium.org, blink-revi...@chromium.org, edgesto...@microsoft.com, hansberry+wa...@chromium.org, language...@chromium.org, ios-r...@chromium.org, cros-setti...@google.com, arc-review...@google.com, davidj...@chromium.org, ajayramamurt...@google.com, ashleynewson+watch-...@chromium.org, eugeni...@chromium.org, lingqi...@chromium.org, christia...@chromium.org, martijn...@martijnc.be, torne...@chromium.org, pushi+wat...@google.com, mar...@chromium.org, yhanada...@chromium.org, gavinp...@chromium.org, dmblac...@google.com, chrome-tab-group-en...@google.com, kouhei...@chromium.org, vaapi-...@chromium.org, oilpan-rev...@chromium.org, core-timi...@chromium.org, ozone-...@chromium.org, toshikikikuch...@chromium.org, kouhe...@chromium.org, niharm...@google.com, cros-print...@google.com, max+watc...@igalia.com, wychen...@chromium.org, geoffla...@chromium.org, tracing...@chromium.org, zackha...@chromium.org, dewitt...@chromium.org, blink-revie...@chromium.org, longbowei+watc...@google.com, michaelcheco+...@google.com, asvitkine...@chromium.org, alexmo...@chromium.org, jmedle...@chromium.org, gl...@chromium.org, ayman...@chromium.org, gangwu...@chromium.org, spang...@chromium.org, scheduler...@chromium.org, bartek...@chromium.org, olka+...@chromium.org, suetfei+wa...@google.com, rhalava...@chromium.org, cc-...@chromium.org, tbarzi...@chromium.org, tluk+...@chromium.org, shend...@chromium.org, steimel+...@chromium.org, abigailbk...@google.com, longbowei+fe...@google.com, yyhyyh+fee...@google.com, ejcaruso+wa...@chromium.org, ashleydp+fe...@google.com, harringt...@chromium.org, jimmyxgong+w...@chromium.org, estali...@chromium.org, jackshira+wa...@google.com, jimmyxgong+watch...@chromium.org, cros-system-ui-prod...@google.com, ios-web-view...@google.com, dmurph+watchi...@chromium.org, mpdento...@chromium.org, ajayramamurthy...@google.com, oshima...@chromium.org, jeffreycohen+watc...@chromium.org, ios-revie...@chromium.org, cros-report...@google.com, jackshira+...@google.com, chungshe...@google.com, chadduffin+wa...@chromium.org, dclasson+w...@google.com, djacob...@chromium.org, roblia...@chromium.org, hansberry+wa...@chromium.org, rrsilva+wat...@google.com, jdeblas...@chromium.org, kinuko...@chromium.org, jonmann+watc...@chromium.org, dkrahn...@chromium.org, grt+...@chromium.org, blink-rev...@chromium.org, filesapp...@chromium.org, penghu...@chromium.org, dmurph+watchi...@chromium.org, devtools...@chromium.org, loading-re...@chromium.org, hashimo...@chromium.org, titoua...@chromium.org, servicewor...@chromium.org, permissio...@chromium.org, web-schedulin...@chromium.org, agriev...@chromium.org, dcheng+c...@chromium.org, performance-m...@chromium.org, jz...@chromium.org, blink-re...@chromium.org, fmalit...@chromium.org, security-...@chromium.org, jorgel...@chromium.org, vakh+safe_br...@chromium.org, crmulli...@chromium.org, drott+bl...@chromium.org, hansberry+w...@chromium.org, asvitki...@chromium.org, jdonnel...@chromium.org, dmurph+watching...@chromium.org, zelin+watch-we...@chromium.org, srahim...@chromium.org, blink-...@chromium.org, blink-revie...@chromium.org, net-r...@chromium.org, storage...@chromium.org, Takuto Ikuta
            Attention needed from Adam Rice, Himanshu Panwar and Jatin Mittal

            Takuto Ikuta removed chrome-b...@google.com from this change

            Deleted Reviewers:
            Open in Gerrit

            Related details

            Attention is currently required from:
            • Adam Rice
            • Himanshu Panwar
            • Jatin Mittal
            Submit Requirements:
            • requirement satisfiedCode-Coverage
            • requirement is not satisfiedCode-Owners
            • requirement is not satisfiedCode-Review
            • requirement is not satisfiedReview-Enforcement
            Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
            Gerrit-MessageType: deleteReviewer
            satisfied_requirement
            unsatisfied_requirement
            open
            diffy

            Greg Thompson (Gerrit)

            unread,
            Jun 19, 2026, 5:37:59 AM (8 days ago) Jun 19
            to Jatin Mittal, grt+...@chromium.org, Rakina Zata Amni, Adam Rice, Christian Biesinger, Urvang Joshi, Kevin McNee, Per Åhgren, Reid Kleckner, Ale Bzk, Fredrik Söderquist, Lei Zhang, Kenneth R Christiansen, Enterprise Policy Reviews, Ian Vollick, Jiewei Qian, Rijubrata Bhaumik, Mirko Bonadei, Daniel Cheng, Linyu He, Xida Chen, Ilya Biryukov, Josh Karlin, Anurag Simgeker, Sadrul Chowdhury, Hans Wennborg, James Maclean, Mangesh Ghiware, Sam Zackrisson, Mandy, Arnaud, Chromium Metrics Reviews, Michael Moss, Morten Stenshorne, Simon Hangl, Hiroki Nakagawa, Nikhil Nayunigari, Peter Beverloo, Sean Maher, Wang, Wei4, Peter Williamson, Ryan Sultanem, Shu Yang, Zhe Su, Charles Hager, Kevin Babbitt, Andrew Rayskiy, Kenneth Rohde Christiansen, Kentaro Hara, Khushal Sagar, Javier Fernandez, Stephen Chenney, Nico Weber, Hu, Ningxin, Hirokazu Honda, Avi Drissman, CJ DiMeglio, Nate Chapin, Sinan Sahin, Neil Coronado, Menard, Alexis, Zewen Li, Moe Adel, Tommy Li, Peter Collingbourne, (Julie)Jeongeun Kim, Thiabaud Engelbrecht, Yao Xiao, Raphael Kubo da Costa, Hongchan Choi, Jerome Jiang, Olga Gerchikov, Lin, Wanming, Heron Yang, AJITH KUMAR V, Sharon Yang, Fernando Fiori, Thorsten Kober, srirama chandra sekhar, Zijie He, Mark Schillaci, Dirk Schulze, AyeAye Python Dispatcher, kokoro, Himanshu Panwar, Mayur Patil, android-bu...@system.gserviceaccount.com, Chromium LUCI CQ, chromium...@chromium.org, blink-rev...@chromium.org, accessibility-a...@google.com, ddrone...@google.com, webauthn...@chromium.org, ashleynewson+watch...@chromium.org, crisrael+...@google.com, josiah...@chromium.org, xlythe+wa...@google.com, yhanad...@chromium.org, nicolas...@chromium.org, network-ser...@chromium.org, osaul+aut...@google.com, cros-ed...@google.com, halliwe...@chromium.org, droger+w...@chromium.org, mac-r...@chromium.org, meilian...@chromium.org, headless...@chromium.org, kuragin+web-ap...@chromium.org, blink-rev...@chromium.org, yigu+...@chromium.org, jackshira+w...@google.com, mlcui+watch-os-s...@google.com, marq+...@chromium.org, nikhilcn+wat...@google.com, weiluanw...@google.com, bmcquad...@chromium.org, glazuno...@chromium.org, kyungjunle...@google.com, blink-re...@chromium.org, enne...@chromium.org, nektar...@chromium.org, andysjl...@chromium.org, core-web-vita...@chromium.org, chrome-gr...@chromium.org, trewin...@google.com, dtapuska+...@chromium.org, wfh+...@chromuium.org, crisrael+wa...@google.com, dennyh...@google.com, xiaohui...@chromium.org, chikamu...@chromium.org, dtapuska+ch...@chromium.org, michaelcheco+wa...@google.com, keithle...@chromium.org, fenced-fra...@chromium.org, odejesu...@chromium.org, japhet+...@chromium.org, chromeos-gfx-...@google.com, sky+...@chromium.org, yhanada+...@chromium.org, fdoray...@chromium.org, crisrael+w...@google.com, gogeral...@chromium.org, jasonrhee+w...@google.com, danakj...@chromium.org, dmurph+wa...@chromium.org, hansberry+wat...@chromium.org, hanxi...@chromium.org, jackshira+wat...@google.com, mgiuca...@chromium.org, mfoltz+wa...@chromium.org, devtools-re...@chromium.org, lighthouse-eng-extern...@google.com, yuzo+...@chromium.org, ios-actor...@google.com, mfoltz+wa...@chromium.org, blink-revie...@chromium.org, creis...@chromium.org, loading-rev...@chromium.org, tranbaod...@chromium.org, jiajunz+wa...@google.com, bling-ai-foundatio...@google.com, blink-reviews-p...@chromium.org, bnc+...@chromium.org, siashah+au...@chromium.org, rmcelra...@chromium.org, webap...@microsoft.com, jbroma...@chromium.org, bling-alchemy-eng+...@google.com, jackshira+wat...@google.com, speed-metr...@chromium.org, caitkp...@chromium.org, schedule...@chromium.org, fuchsia...@chromium.org, ortuno...@chromium.org, speed-metrics...@chromium.org, yuezhang...@chromium.org, apavlo...@chromium.org, jonmann+wa...@chromium.org, erickun...@chromium.org, khorimoto+wa...@chromium.org, jasonrobe...@google.com, hsuregan+wat...@chromium.org, xiaochen...@chromium.org, borealis-re...@google.com, tommyw+w...@chromium.org, philli...@chromium.org, aji...@samsung.com, cblume...@chromium.org, stevenjb+wa...@chromium.org, yfriedm...@chromium.org, phshah...@chromium.org, pdf-r...@chromium.org, mdjone...@chromium.org, johnche...@chromium.org, cbe-cep-eng...@google.com, joeantonetti+wa...@google.com, chlily...@chromium.org, akingsb+wat...@google.com, jimmyxgong+wat...@chromium.org, ricea...@chromium.org, hiroshig...@chromium.org, print-revi...@chromium.org, hansenmichael...@google.com, dmurph+wat...@chromium.org, blink-rev...@chromium.org, vasilii+watchlis...@chromium.org, peter+watch...@chromium.org, scheduler-...@chromium.org, blink-revi...@chromium.org, wfh+...@chromium.org, jbauma...@chromium.org, knollr+wat...@chromium.org, ffred...@chromium.org, loading-rev...@chromium.org, gab+...@chromium.org, wnwen...@chromium.org, alandin...@chromium.org, cros-enterpris...@chromium.org, jackshira+w...@google.com, crisrael+wa...@google.com, mtomas...@chromium.org, francisjp...@google.com, ios-rev...@chromium.org, telemetr...@chromium.org, chromiumme...@microsoft.com, katie...@chromium.org, mattsimm...@chromium.org, android-web...@chromium.org, dullweb...@chromium.org, eric.c...@apple.com, hais+wat...@google.com, peilinwa...@google.com, prerenderi...@chromium.org, lizeb+watch...@chromium.org, croissant-...@chromium.org, yhanada+...@chromium.org, hirokisa...@chromium.org, blink-re...@chromium.org, translat...@chromium.org, ramyagopa...@google.com, gavinp...@chromium.org, pkotwic...@chromium.org, blink-revi...@chromium.org, khorimoto+w...@chromium.org, cros-essential...@chromium.org, glider...@chromium.org, jackshira+wa...@google.com, chili...@chromium.org, arthursonzog...@chromium.org, mattreyno...@chromium.org, omnibox-...@chromium.org, csharris...@chromium.org, dtraino...@chromium.org, shuche...@chromium.org, bhartmire+w...@google.com, shimazu+se...@chromium.org, kinuko+ser...@chromium.org, armalhotra+a...@google.com, chrome-regionalc...@google.com, dtseng+c...@chromium.org, twelling...@chromium.org, joeantonetti+...@google.com, chadduffin+w...@chromium.org, jshin...@chromium.org, jonmann+wat...@chromium.org, subresource-f...@chromium.org, kinuko+...@chromium.org, ntp-dev...@chromium.org, chromeos-ca...@google.com, csharrison+...@chromium.org, inca-eng...@google.com, feature-me...@chromium.org, jessemcke...@google.com, penghuan...@chromium.org, tmartino+tran...@chromium.org, media-cro...@chromium.org, rsleev...@chromium.org, chromotin...@chromium.org, aixba+wat...@chromium.org, loading...@chromium.org, rkgibso...@chromium.org, roagarw...@chromium.org, chasej...@chromium.org, gavin...@chromium.org, ukai+...@chromium.org, chromium-a...@chromium.org, hsuregan+wa...@chromium.org, webapks-...@chromium.org, pdr+svgw...@chromium.org, stanfie...@google.com, donnd...@chromium.org, xinghui...@chromium.org, jbrom...@chromium.org, ajayramamurth...@google.com, chromium-...@engflow.com, npm+...@chromium.org, sloboda...@chromium.org, lucasrada...@google.com, jackshira+w...@google.com, blink-re...@chromium.org, silv...@chromium.org, mek+w...@chromium.org, crostin...@chromium.org, eme-r...@chromium.org, phoglun...@chromium.org, shimazu...@chromium.org, fgal...@chromium.org, hansberry+wa...@chromium.org, hidehik...@chromium.org, tote-eng...@google.com, ajayramamurthy...@google.com, kenjibah...@chromium.org, jackshira+wa...@google.com, eic+...@google.com, wangdanny+fe...@google.com, kinuko...@chromium.org, browser-comp...@chromium.org, pushi+wa...@google.com, pushi+watc...@google.com, chromeos-kio...@google.com, ajwong...@chromium.org, emircan+watch...@chromium.org, derinel+wat...@google.com, loyso...@chromium.org, mfoltz+wa...@chromium.org, nwoked...@chromium.org, dom+...@chromium.org, polard...@google.com, shgar+aut...@google.com, julietlevesque...@google.com, dtseng...@chromium.org, lize...@chromium.org, dmurph+watch...@chromium.org, mkwst+w...@chromium.org, crost...@chromium.org, tburkar...@chromium.org, marinacio...@chromium.org, dmurph+watch...@chromium.org, horo+...@chromium.org, jiajunz+wat...@google.com, gavin...@chromium.org, mercer...@google.com, jophba...@chromium.org, ajayramamurthy+w...@google.com, chrome-intelligence-te...@google.com, ananyasee...@google.com, blink-work...@chromium.org, navigation...@chromium.org, siyua+aut...@chromium.org, stluon...@chromium.org, feature-v...@chromium.org, rsesek...@chromium.org, video-networking...@google.com, lwinston+watc...@google.com, dibyapal+wa...@chromium.org, lens-chrome...@google.com, jonmann+w...@chromium.org, khmel...@chromium.org, cwp-review...@google.com, iclella...@chromium.org, nona+...@chromium.org, petewi...@chromium.org, zol...@webkit.org, chfreme...@chromium.org, aashna...@google.com, vinnypersky+...@google.com, dmurph+watc...@chromium.org, byronle...@chromium.org, yusufo...@chromium.org, asumane...@google.com, ckitaga...@chromium.org, anastas...@google.com, michaelchec...@google.com, nickdiego+wa...@igalia.com, ender...@chromium.org, hansberry+w...@chromium.org, kouhe...@chromium.org, aleventh...@chromium.org, pasko...@chromium.org, dominicc+...@chromium.org, nyquis...@chromium.org, print-rev...@chromium.org, fserb...@chromium.org, jatapiaro+wat...@google.com, iwells...@chromium.org, msrame...@chromium.org, antoniosarto...@chromium.org, gcasto+w...@chromium.org, rginda...@chromium.org, lizeb...@chromium.org, shannc...@chromium.org, media-wi...@chromium.org, xiangdongkong+...@google.com, dmurph+watchin...@chromium.org, mickeybu...@chromium.org, chrome-intell...@chromium.org, mcasas+med...@chromium.org, menghua...@google.com, ajayramamurth...@google.com, yongshun+...@google.com, tgupta...@chromium.org, pmonett...@chromium.org, thegreenf...@chromium.org, ydago...@chromium.org, extension...@chromium.org, moqati-team+chr...@google.com, dfried...@chromium.org, fgorsk...@chromium.org, blink-revi...@chromium.org, edgesto...@microsoft.com, hansberry+wa...@chromium.org, language...@chromium.org, ios-r...@chromium.org, cros-setti...@google.com, arc-review...@google.com, davidj...@chromium.org, ajayramamurt...@google.com, ashleynewson+watch-...@chromium.org, eugeni...@chromium.org, lingqi...@chromium.org, christia...@chromium.org, martijn...@martijnc.be, torne...@chromium.org, pushi+wat...@google.com, mar...@chromium.org, yhanada...@chromium.org, gavinp...@chromium.org, dmblac...@google.com, chrome-tab-group-en...@google.com, kouhei...@chromium.org, vaapi-...@chromium.org, oilpan-rev...@chromium.org, core-timi...@chromium.org, ozone-...@chromium.org, toshikikikuch...@chromium.org, kouhe...@chromium.org, niharm...@google.com, cros-print...@google.com, max+watc...@igalia.com, wychen...@chromium.org, geoffla...@chromium.org, tracing...@chromium.org, zackha...@chromium.org, dewitt...@chromium.org, blink-revie...@chromium.org, longbowei+watc...@google.com, michaelcheco+...@google.com, asvitkine...@chromium.org, alexmo...@chromium.org, jmedle...@chromium.org, gl...@chromium.org, ayman...@chromium.org, gangwu...@chromium.org, spang...@chromium.org, scheduler...@chromium.org, bartek...@chromium.org, olka+...@chromium.org, suetfei+wa...@google.com, rhalava...@chromium.org, cc-...@chromium.org, tbarzi...@chromium.org, tluk+...@chromium.org, shend...@chromium.org, steimel+...@chromium.org, abigailbk...@google.com, longbowei+fe...@google.com, yyhyyh+fee...@google.com, ejcaruso+wa...@chromium.org, ashleydp+fe...@google.com, harringt...@chromium.org, jimmyxgong+w...@chromium.org, estali...@chromium.org, jackshira+wa...@google.com, jimmyxgong+watch...@chromium.org, cros-system-ui-prod...@google.com, ios-web-view...@google.com, dmurph+watchi...@chromium.org, mpdento...@chromium.org, ajayramamurthy...@google.com, oshima...@chromium.org, jeffreycohen+watc...@chromium.org, ios-revie...@chromium.org, cros-report...@google.com, jackshira+...@google.com, chungshe...@google.com, chadduffin+wa...@chromium.org, dclasson+w...@google.com, djacob...@chromium.org, roblia...@chromium.org, hansberry+wa...@chromium.org, rrsilva+wat...@google.com, jdeblas...@chromium.org, kinuko...@chromium.org, jonmann+watc...@chromium.org, dkrahn...@chromium.org, blink-rev...@chromium.org, filesapp...@chromium.org, penghu...@chromium.org, dmurph+watchi...@chromium.org, devtools...@chromium.org, loading-re...@chromium.org, hashimo...@chromium.org, titoua...@chromium.org, servicewor...@chromium.org, permissio...@chromium.org, web-schedulin...@chromium.org, agriev...@chromium.org, dcheng+c...@chromium.org, performance-m...@chromium.org, jz...@chromium.org, blink-re...@chromium.org, fmalit...@chromium.org, security-...@chromium.org, jorgel...@chromium.org, vakh+safe_br...@chromium.org, crmulli...@chromium.org, drott+bl...@chromium.org, hansberry+w...@chromium.org, asvitki...@chromium.org, jdonnel...@chromium.org, dmurph+watching...@chromium.org, zelin+watch-we...@chromium.org, srahim...@chromium.org, blink-...@chromium.org, blink-revie...@chromium.org, net-r...@chromium.org, storage...@chromium.org
            Attention needed from Adam Rice, Himanshu Panwar and Jatin Mittal

            Greg Thompson removed grt+...@chromium.org from this change

            Deleted Reviewers:
            satisfied_requirement
            unsatisfied_requirement
            open
            diffy

            Adam Rice (Gerrit)

            unread,
            Jun 24, 2026, 3:42:05 PM (3 days ago) Jun 24
            to Jatin Mittal, Rakina Zata Amni, Christian Biesinger, Urvang Joshi, Kevin McNee, Per Åhgren, Reid Kleckner, Ale Bzk, Fredrik Söderquist, Lei Zhang, Kenneth R Christiansen, Enterprise Policy Reviews, Ian Vollick, Jiewei Qian, Rijubrata Bhaumik, Mirko Bonadei, Daniel Cheng, Linyu He, Xida Chen, Ilya Biryukov, Josh Karlin, Anurag Simgeker, Sadrul Chowdhury, Hans Wennborg, James Maclean, Mangesh Ghiware, Sam Zackrisson, Mandy, Arnaud, Chromium Metrics Reviews, Michael Moss, Morten Stenshorne, Simon Hangl, Hiroki Nakagawa, Nikhil Nayunigari, Peter Beverloo, Sean Maher, Wang, Wei4, Peter Williamson, Ryan Sultanem, Shu Yang, Zhe Su, Charles Hager, Kevin Babbitt, Andrew Rayskiy, Kenneth Rohde Christiansen, Kentaro Hara, Khushal Sagar, Javier Fernandez, Stephen Chenney, Nico Weber, Hu, Ningxin, Hirokazu Honda, Avi Drissman, CJ DiMeglio, Nate Chapin, Sinan Sahin, Neil Coronado, Menard, Alexis, Zewen Li, Moe Adel, Tommy Li, Peter Collingbourne, (Julie)Jeongeun Kim, Thiabaud Engelbrecht, Yao Xiao, Raphael Kubo da Costa, Hongchan Choi, Jerome Jiang, Olga Gerchikov, Lin, Wanming, Heron Yang, AJITH KUMAR V, Sharon Yang, Fernando Fiori, Thorsten Kober, srirama chandra sekhar, Zijie He, Mark Schillaci, Dirk Schulze, AyeAye Python Dispatcher, kokoro, Himanshu Panwar, Mayur Patil, android-bu...@system.gserviceaccount.com, Chromium LUCI CQ, chromium...@chromium.org, blink-rev...@chromium.org, accessibility-a...@google.com, ddrone...@google.com, webauthn...@chromium.org, ashleynewson+watch...@chromium.org, crisrael+...@google.com, josiah...@chromium.org, xlythe+wa...@google.com, yhanad...@chromium.org, nicolas...@chromium.org, network-ser...@chromium.org, osaul+aut...@google.com, cros-ed...@google.com, halliwe...@chromium.org, droger+w...@chromium.org, mac-r...@chromium.org, meilian...@chromium.org, headless...@chromium.org, kuragin+web-ap...@chromium.org, blink-rev...@chromium.org, yigu+...@chromium.org, jackshira+w...@google.com, mlcui+watch-os-s...@google.com, marq+...@chromium.org, nikhilcn+wat...@google.com, weiluanw...@google.com, bmcquad...@chromium.org, glazuno...@chromium.org, kyungjunle...@google.com, blink-re...@chromium.org, enne...@chromium.org, nektar...@chromium.org, andysjl...@chromium.org, core-web-vita...@chromium.org, chrome-gr...@chromium.org, trewin...@google.com, dtapuska+...@chromium.org, wfh+...@chromuium.org, crisrael+wa...@google.com, dennyh...@google.com, xiaohui...@chromium.org, chikamu...@chromium.org, dtapuska+ch...@chromium.org, michaelcheco+wa...@google.com, keithle...@chromium.org, fenced-fra...@chromium.org, odejesu...@chromium.org, japhet+...@chromium.org, chromeos-gfx-...@google.com, sky+...@chromium.org, yhanada+...@chromium.org, fdoray...@chromium.org, crisrael+w...@google.com, gogeral...@chromium.org, jasonrhee+w...@google.com, danakj...@chromium.org, dmurph+wa...@chromium.org, hansberry+wat...@chromium.org, hanxi...@chromium.org, jackshira+wat...@google.com, mgiuca...@chromium.org, mfoltz+wa...@chromium.org, devtools-re...@chromium.org, lighthouse-eng-extern...@google.com, yuzo+...@chromium.org, ios-actor...@google.com, mfoltz+wa...@chromium.org, blink-revie...@chromium.org, creis...@chromium.org, loading-rev...@chromium.org, tranbaod...@chromium.org, jiajunz+wa...@google.com, bling-ai-foundatio...@google.com, blink-reviews-p...@chromium.org, bnc+...@chromium.org, siashah+au...@chromium.org, rmcelra...@chromium.org, webap...@microsoft.com, jbroma...@chromium.org, bling-alchemy-eng+...@google.com, jackshira+wat...@google.com, speed-metr...@chromium.org, caitkp...@chromium.org, schedule...@chromium.org, fuchsia...@chromium.org, ortuno...@chromium.org, speed-metrics...@chromium.org, yuezhang...@chromium.org, apavlo...@chromium.org, jonmann+wa...@chromium.org, erickun...@chromium.org, khorimoto+wa...@chromium.org, jasonrobe...@google.com, hsuregan+wat...@chromium.org, xiaochen...@chromium.org, borealis-re...@google.com, tommyw+w...@chromium.org, philli...@chromium.org, aji...@samsung.com, cblume...@chromium.org, stevenjb+wa...@chromium.org, yfriedm...@chromium.org, phshah...@chromium.org, pdf-r...@chromium.org, mdjone...@chromium.org, johnche...@chromium.org, cbe-cep-eng...@google.com, joeantonetti+wa...@google.com, chlily...@chromium.org, akingsb+wat...@google.com, jimmyxgong+wat...@chromium.org, ricea...@chromium.org, hiroshig...@chromium.org, print-revi...@chromium.org, hansenmichael...@google.com, dmurph+wat...@chromium.org, blink-rev...@chromium.org, vasilii+watchlis...@chromium.org, peter+watch...@chromium.org, scheduler-...@chromium.org, blink-revi...@chromium.org, wfh+...@chromium.org, jbauma...@chromium.org, knollr+wat...@chromium.org, ffred...@chromium.org, loading-rev...@chromium.org, gab+...@chromium.org, wnwen...@chromium.org, alandin...@chromium.org, cros-enterpris...@chromium.org, jackshira+w...@google.com, crisrael+wa...@google.com, mtomas...@chromium.org, francisjp...@google.com, ios-rev...@chromium.org, telemetr...@chromium.org, chromiumme...@microsoft.com, katie...@chromium.org, mattsimm...@chromium.org, android-web...@chromium.org, dullweb...@chromium.org, eric.c...@apple.com, hais+wat...@google.com, peilinwa...@google.com, prerenderi...@chromium.org, lizeb+watch...@chromium.org, croissant-...@chromium.org, yhanada+...@chromium.org, hirokisa...@chromium.org, blink-re...@chromium.org, translat...@chromium.org, ramyagopa...@google.com, gavinp...@chromium.org, pkotwic...@chromium.org, blink-revi...@chromium.org, khorimoto+w...@chromium.org, cros-essential...@chromium.org, glider...@chromium.org, jackshira+wa...@google.com, chili...@chromium.org, arthursonzog...@chromium.org, mattreyno...@chromium.org, omnibox-...@chromium.org, csharris...@chromium.org, dtraino...@chromium.org, shuche...@chromium.org, bhartmire+w...@google.com, shimazu+se...@chromium.org, kinuko+ser...@chromium.org, armalhotra+a...@google.com, chrome-regionalc...@google.com, dtseng+c...@chromium.org, twelling...@chromium.org, joeantonetti+...@google.com, chadduffin+w...@chromium.org, jshin...@chromium.org, jonmann+wat...@chromium.org, subresource-f...@chromium.org, kinuko+...@chromium.org, ntp-dev...@chromium.org, chromeos-ca...@google.com, csharrison+...@chromium.org, inca-eng...@google.com, feature-me...@chromium.org, jessemcke...@google.com, penghuan...@chromium.org, tmartino+tran...@chromium.org, media-cro...@chromium.org, rsleev...@chromium.org, chromotin...@chromium.org, aixba+wat...@chromium.org, loading...@chromium.org, rkgibso...@chromium.org, roagarw...@chromium.org, chasej...@chromium.org, gavin...@chromium.org, ukai+...@chromium.org, chromium-a...@chromium.org, hsuregan+wa...@chromium.org, webapks-...@chromium.org, pdr+svgw...@chromium.org, stanfie...@google.com, donnd...@chromium.org, xinghui...@chromium.org, jbrom...@chromium.org, ajayramamurth...@google.com, chromium-...@engflow.com, npm+...@chromium.org, sloboda...@chromium.org, lucasrada...@google.com, jackshira+w...@google.com, blink-re...@chromium.org, silv...@chromium.org, mek+w...@chromium.org, crostin...@chromium.org, eme-r...@chromium.org, phoglun...@chromium.org, shimazu...@chromium.org, fgal...@chromium.org, hansberry+wa...@chromium.org, hidehik...@chromium.org, tote-eng...@google.com, ajayramamurthy...@google.com, kenjibah...@chromium.org, jackshira+wa...@google.com, eic+...@google.com, wangdanny+fe...@google.com, kinuko...@chromium.org, browser-comp...@chromium.org, pushi+wa...@google.com, pushi+watc...@google.com, chromeos-kio...@google.com, ajwong...@chromium.org, emircan+watch...@chromium.org, derinel+wat...@google.com, loyso...@chromium.org, mfoltz+wa...@chromium.org, nwoked...@chromium.org, dom+...@chromium.org, polard...@google.com, shgar+aut...@google.com, julietlevesque...@google.com, dtseng...@chromium.org, lize...@chromium.org, dmurph+watch...@chromium.org, mkwst+w...@chromium.org, crost...@chromium.org, tburkar...@chromium.org, marinacio...@chromium.org, dmurph+watch...@chromium.org, horo+...@chromium.org, jiajunz+wat...@google.com, gavin...@chromium.org, mercer...@google.com, jophba...@chromium.org, ajayramamurthy+w...@google.com, chrome-intelligence-te...@google.com, ananyasee...@google.com, blink-work...@chromium.org, navigation...@chromium.org, siyua+aut...@chromium.org, stluon...@chromium.org, feature-v...@chromium.org, rsesek...@chromium.org, video-networking...@google.com, lwinston+watc...@google.com, dibyapal+wa...@chromium.org, lens-chrome...@google.com, jonmann+w...@chromium.org, khmel...@chromium.org, cwp-review...@google.com, iclella...@chromium.org, nona+...@chromium.org, petewi...@chromium.org, zol...@webkit.org, chfreme...@chromium.org, aashna...@google.com, vinnypersky+...@google.com, dmurph+watc...@chromium.org, byronle...@chromium.org, yusufo...@chromium.org, asumane...@google.com, ckitaga...@chromium.org, anastas...@google.com, michaelchec...@google.com, nickdiego+wa...@igalia.com, ender...@chromium.org, hansberry+w...@chromium.org, kouhe...@chromium.org, aleventh...@chromium.org, pasko...@chromium.org, dominicc+...@chromium.org, nyquis...@chromium.org, print-rev...@chromium.org, fserb...@chromium.org, jatapiaro+wat...@google.com, iwells...@chromium.org, msrame...@chromium.org, antoniosarto...@chromium.org, gcasto+w...@chromium.org, rginda...@chromium.org, lizeb...@chromium.org, shannc...@chromium.org, media-wi...@chromium.org, xiangdongkong+...@google.com, dmurph+watchin...@chromium.org, mickeybu...@chromium.org, chrome-intell...@chromium.org, mcasas+med...@chromium.org, menghua...@google.com, ajayramamurth...@google.com, yongshun+...@google.com, tgupta...@chromium.org, pmonett...@chromium.org, thegreenf...@chromium.org, ydago...@chromium.org, extension...@chromium.org, moqati-team+chr...@google.com, dfried...@chromium.org, fgorsk...@chromium.org, blink-revi...@chromium.org, edgesto...@microsoft.com, hansberry+wa...@chromium.org, language...@chromium.org, ios-r...@chromium.org, cros-setti...@google.com, arc-review...@google.com, davidj...@chromium.org, ajayramamurt...@google.com, ashleynewson+watch-...@chromium.org, eugeni...@chromium.org, lingqi...@chromium.org, christia...@chromium.org, martijn...@martijnc.be, torne...@chromium.org, pushi+wat...@google.com, mar...@chromium.org, yhanada...@chromium.org, gavinp...@chromium.org, dmblac...@google.com, chrome-tab-group-en...@google.com, kouhei...@chromium.org, vaapi-...@chromium.org, oilpan-rev...@chromium.org, core-timi...@chromium.org, ozone-...@chromium.org, toshikikikuch...@chromium.org, kouhe...@chromium.org, niharm...@google.com, cros-print...@google.com, max+watc...@igalia.com, wychen...@chromium.org, geoffla...@chromium.org, tracing...@chromium.org, zackha...@chromium.org, dewitt...@chromium.org, blink-revie...@chromium.org, longbowei+watc...@google.com, michaelcheco+...@google.com, asvitkine...@chromium.org, alexmo...@chromium.org, jmedle...@chromium.org, gl...@chromium.org, ayman...@chromium.org, gangwu...@chromium.org, spang...@chromium.org, scheduler...@chromium.org, bartek...@chromium.org, olka+...@chromium.org, suetfei+wa...@google.com, rhalava...@chromium.org, cc-...@chromium.org, tbarzi...@chromium.org, tluk+...@chromium.org, shend...@chromium.org, steimel+...@chromium.org, abigailbk...@google.com, longbowei+fe...@google.com, yyhyyh+fee...@google.com, ejcaruso+wa...@chromium.org, ashleydp+fe...@google.com, harringt...@chromium.org, jimmyxgong+w...@chromium.org, estali...@chromium.org, jackshira+wa...@google.com, jimmyxgong+watch...@chromium.org, cros-system-ui-prod...@google.com, ios-web-view...@google.com, dmurph+watchi...@chromium.org, mpdento...@chromium.org, ajayramamurthy...@google.com, oshima...@chromium.org, jeffreycohen+watc...@chromium.org, ios-revie...@chromium.org, cros-report...@google.com, jackshira+...@google.com, chungshe...@google.com, chadduffin+wa...@chromium.org, dclasson+w...@google.com, djacob...@chromium.org, roblia...@chromium.org, hansberry+wa...@chromium.org, rrsilva+wat...@google.com, jdeblas...@chromium.org, kinuko...@chromium.org, jonmann+watc...@chromium.org, dkrahn...@chromium.org, blink-rev...@chromium.org, filesapp...@chromium.org, penghu...@chromium.org, dmurph+watchi...@chromium.org, devtools...@chromium.org, loading-re...@chromium.org, hashimo...@chromium.org, titoua...@chromium.org, servicewor...@chromium.org, permissio...@chromium.org, web-schedulin...@chromium.org, agriev...@chromium.org, dcheng+c...@chromium.org, performance-m...@chromium.org, jz...@chromium.org, blink-re...@chromium.org, fmalit...@chromium.org, security-...@chromium.org, jorgel...@chromium.org, vakh+safe_br...@chromium.org, crmulli...@chromium.org, drott+bl...@chromium.org, hansberry+w...@chromium.org, asvitki...@chromium.org, jdonnel...@chromium.org, dmurph+watching...@chromium.org, zelin+watch-we...@chromium.org, srahim...@chromium.org, blink-...@chromium.org, blink-revie...@chromium.org, net-r...@chromium.org, storage...@chromium.org
            Attention needed from Himanshu Panwar and Jatin Mittal

            Adam Rice voted and added 6 comments

            Votes added by Adam Rice

            Code-Review+1

            6 comments

            Patchset-level comments
            File-level comment, Patchset 9 (Latest):
            Adam Rice . resolved

            lgtm with nits

            File net/http/http_util.h
            Line 83, Patchset 9 (Latest): bool allow_whitespace);
            Adam Rice . unresolved

            Are you going to add a use of this function with `allow_whitespace` set to false?

            File net/http/http_util.cc
            Line 237, Patchset 9 (Latest):std::optional<HttpByteRange> HttpUtil::ParseFetchSingleRange(
            Adam Rice . unresolved

            It's good to add a fuzzer when adding a new parser. This is very easy with the `FUZZ_TEST` macro: see https://chromium.googlesource.com/chromium/src/+/HEAD/testing/libfuzzer/getting_started.md

            Line 244, Patchset 9 (Latest): size_t pos = kBytesUnit.size();
            Adam Rice . unresolved

            Nit: you can make a string parser more obviously correct by having a `std::string_view` variable that contains the parts of the string you haven't yet parsed, and removing chunks from the strong with the `remove_prefix()` method as you consume them. If you use high-level methods like `find_first_not_of()` you can avoid subscripting, and bounds checks can be replaced with `!remaining_input.empty()` checks. See https://source.chromium.org/chromium/chromium/src/+/main:net/third_party/uri_template/uri_template.cc;drc=362dbaf3c1048a93929fff003e784d537f3ebfbc;bpv=1;bpt=1;l=167?gsn=Expand&gs=KYTHE%3A%2F%2Fkythe%3A%2F%2Fchromium.googlesource.com%2Fcodesearch%2Fchromium%2Fsrc%2F%2Fmain%3Flang%3Dc%252B%252B%3Fpath%3Dnet%2Fthird_party%2Furi_template%2Furi_template.cc%23jarBFsW_57seV6_jeOna5zFFWAA5nzNowIAXLd5OK5Afor an example of this technique.

            This parser is simple enough that you don't need to do this, unless you want to.

            Line 305, Patchset 9 (Latest): std::optional<HttpByteRange> candidate_range;
            if (!range_start) {
            candidate_range = HttpByteRange::Suffix(*range_end);
            } else if (range_end) {
            candidate_range = HttpByteRange::Bounded(*range_start, *range_end);
            } else {
            candidate_range = HttpByteRange::RightUnbounded(*range_start);
            }
            return candidate_range;
            Adam Rice . unresolved

            Why not do:

            ```suggestion
            if (!range_start) {
            return HttpByteRange::Suffix(*range_end);
            }
            if (!range_end) {
            return HttpByteRange::RightUnbounded(*range_start);
            }
            return HttpByteRange::Bounded(*range_start, *range_end);
            ```
            ?
            File net/http/http_util_unittest.cc
            Line 1243, Patchset 9 (Latest): "bytes=5-10 ",
            Adam Rice . unresolved

            Also good to test that we reject multiple ranges, and that extra '=' or '-' are rejected:
            ```
            "bytes=0-10,15-20",
            "bytes==0-5",
            "bytes=0--5",
            "bytes="0-5-",
            "bytes="-0-5",
            ```

            Open in Gerrit

            Related details

            Attention is currently required from:
            • Himanshu Panwar
            • Jatin Mittal
            Submit Requirements:
            • requirement satisfiedCode-Coverage
            • requirement satisfiedCode-Owners
            • requirement satisfiedCode-Review
            • requirement is not satisfiedNo-Unresolved-Comments
            • requirement is not satisfiedReview-Enforcement
            Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
            Gerrit-MessageType: comment
            Gerrit-Attention: Jatin Mittal <jatin...@microsoft.com>
            Gerrit-Comment-Date: Wed, 24 Jun 2026 19:41:24 +0000
            Gerrit-HasComments: Yes
            Gerrit-Has-Labels: Yes
            satisfied_requirement
            unsatisfied_requirement
            open
            diffy

            Jatin Mittal (Gerrit)

            unread,
            Jun 26, 2026, 7:59:40 AM (yesterday) Jun 26
            to Adam Rice, Rakina Zata Amni, Christian Biesinger, Urvang Joshi, Kevin McNee, Per Åhgren, Reid Kleckner, Ale Bzk, Fredrik Söderquist, Lei Zhang, Kenneth R Christiansen, Enterprise Policy Reviews, Ian Vollick, Jiewei Qian, Rijubrata Bhaumik, Mirko Bonadei, Daniel Cheng, Linyu He, Xida Chen, Ilya Biryukov, Josh Karlin, Anurag Simgeker, Sadrul Chowdhury, Hans Wennborg, James Maclean, Mangesh Ghiware, Sam Zackrisson, Mandy, Arnaud, Chromium Metrics Reviews, Michael Moss, Morten Stenshorne, Simon Hangl, Hiroki Nakagawa, Nikhil Nayunigari, Peter Beverloo, Sean Maher, Wang, Wei4, Peter Williamson, Ryan Sultanem, Shu Yang, Zhe Su, Charles Hager, Kevin Babbitt, Andrew Rayskiy, Kenneth Rohde Christiansen, Kentaro Hara, Khushal Sagar, Javier Fernandez, Stephen Chenney, Nico Weber, Hu, Ningxin, Hirokazu Honda, Avi Drissman, CJ DiMeglio, Nate Chapin, Sinan Sahin, Neil Coronado, Menard, Alexis, Zewen Li, Moe Adel, Tommy Li, Peter Collingbourne, (Julie)Jeongeun Kim, Thiabaud Engelbrecht, Yao Xiao, Raphael Kubo da Costa, Hongchan Choi, Jerome Jiang, Olga Gerchikov, Lin, Wanming, Heron Yang, AJITH KUMAR V, Sharon Yang, Fernando Fiori, Thorsten Kober, srirama chandra sekhar, Zijie He, Mark Schillaci, Dirk Schulze, AyeAye Python Dispatcher, kokoro, Himanshu Panwar, Mayur Patil, android-bu...@system.gserviceaccount.com, Chromium LUCI CQ, chromium...@chromium.org, blink-rev...@chromium.org, accessibility-a...@google.com, ddrone...@google.com, webauthn...@chromium.org, ashleynewson+watch...@chromium.org, crisrael+...@google.com, josiah...@chromium.org, xlythe+wa...@google.com, yhanad...@chromium.org, nicolas...@chromium.org, network-ser...@chromium.org, osaul+aut...@google.com, cros-ed...@google.com, halliwe...@chromium.org, droger+w...@chromium.org, mac-r...@chromium.org, meilian...@chromium.org, headless...@chromium.org, kuragin+web-ap...@chromium.org, blink-rev...@chromium.org, yigu+...@chromium.org, jackshira+w...@google.com, mlcui+watch-os-s...@google.com, marq+...@chromium.org, nikhilcn+wat...@google.com, weiluanw...@google.com, bmcquad...@chromium.org, glazuno...@chromium.org, kyungjunle...@google.com, blink-re...@chromium.org, enne...@chromium.org, nektar...@chromium.org, andysjl...@chromium.org, core-web-vita...@chromium.org, chrome-gr...@chromium.org, trewin...@google.com, dtapuska+...@chromium.org, wfh+...@chromuium.org, crisrael+wa...@google.com, dennyh...@google.com, xiaohui...@chromium.org, chikamu...@chromium.org, dtapuska+ch...@chromium.org, michaelcheco+wa...@google.com, keithle...@chromium.org, fenced-fra...@chromium.org, odejesu...@chromium.org, japhet+...@chromium.org, chromeos-gfx-...@google.com, sky+...@chromium.org, yhanada+...@chromium.org, fdoray...@chromium.org, crisrael+w...@google.com, gogeral...@chromium.org, jasonrhee+w...@google.com, danakj...@chromium.org, dmurph+wa...@chromium.org, hansberry+wat...@chromium.org, hanxi...@chromium.org, jackshira+wat...@google.com, mgiuca...@chromium.org, mfoltz+wa...@chromium.org, devtools-re...@chromium.org, lighthouse-eng-extern...@google.com, yuzo+...@chromium.org, ios-actor...@google.com, mfoltz+wa...@chromium.org, blink-revie...@chromium.org, creis...@chromium.org, loading-rev...@chromium.org, tranbaod...@chromium.org, jiajunz+wa...@google.com, bling-ai-foundatio...@google.com, blink-reviews-p...@chromium.org, bnc+...@chromium.org, siashah+au...@chromium.org, rmcelra...@chromium.org, webap...@microsoft.com, jbroma...@chromium.org, bling-alchemy-eng+...@google.com, jackshira+wat...@google.com, speed-metr...@chromium.org, caitkp...@chromium.org, schedule...@chromium.org, fuchsia...@chromium.org, ortuno...@chromium.org, speed-metrics...@chromium.org, yuezhang...@chromium.org, apavlo...@chromium.org, jonmann+wa...@chromium.org, erickun...@chromium.org, khorimoto+wa...@chromium.org, jasonrobe...@google.com, hsuregan+wat...@chromium.org, xiaochen...@chromium.org, borealis-re...@google.com, tommyw+w...@chromium.org, philli...@chromium.org, aji...@samsung.com, cblume...@chromium.org, stevenjb+wa...@chromium.org, yfriedm...@chromium.org, phshah...@chromium.org, pdf-r...@chromium.org, mdjone...@chromium.org, johnche...@chromium.org, cbe-cep-eng...@google.com, joeantonetti+wa...@google.com, chlily...@chromium.org, akingsb+wat...@google.com, jimmyxgong+wat...@chromium.org, ricea...@chromium.org, hiroshig...@chromium.org, print-revi...@chromium.org, hansenmichael...@google.com, dmurph+wat...@chromium.org, blink-rev...@chromium.org, vasilii+watchlis...@chromium.org, peter+watch...@chromium.org, scheduler-...@chromium.org, blink-revi...@chromium.org, wfh+...@chromium.org, jbauma...@chromium.org, knollr+wat...@chromium.org, ffred...@chromium.org, loading-rev...@chromium.org, gab+...@chromium.org, wnwen...@chromium.org, alandin...@chromium.org, cros-enterpris...@chromium.org, jackshira+w...@google.com, crisrael+wa...@google.com, mtomas...@chromium.org, francisjp...@google.com, ios-rev...@chromium.org, telemetr...@chromium.org, chromiumme...@microsoft.com, katie...@chromium.org, mattsimm...@chromium.org, android-web...@chromium.org, dullweb...@chromium.org, eric.c...@apple.com, hais+wat...@google.com, peilinwa...@google.com, prerenderi...@chromium.org, lizeb+watch...@chromium.org, croissant-...@chromium.org, yhanada+...@chromium.org, hirokisa...@chromium.org, blink-re...@chromium.org, translat...@chromium.org, ramyagopa...@google.com, gavinp...@chromium.org, pkotwic...@chromium.org, blink-revi...@chromium.org, khorimoto+w...@chromium.org, cros-essential...@chromium.org, glider...@chromium.org, jackshira+wa...@google.com, chili...@chromium.org, arthursonzog...@chromium.org, mattreyno...@chromium.org, omnibox-...@chromium.org, csharris...@chromium.org, dtraino...@chromium.org, shuche...@chromium.org, bhartmire+w...@google.com, shimazu+se...@chromium.org, kinuko+ser...@chromium.org, armalhotra+a...@google.com, chrome-regionalc...@google.com, dtseng+c...@chromium.org, twelling...@chromium.org, joeantonetti+...@google.com, chadduffin+w...@chromium.org, jshin...@chromium.org, jonmann+wat...@chromium.org, subresource-f...@chromium.org, kinuko+...@chromium.org, ntp-dev...@chromium.org, chromeos-ca...@google.com, csharrison+...@chromium.org, inca-eng...@google.com, feature-me...@chromium.org, jessemcke...@google.com, penghuan...@chromium.org, tmartino+tran...@chromium.org, media-cro...@chromium.org, rsleev...@chromium.org, chromotin...@chromium.org, aixba+wat...@chromium.org, loading...@chromium.org, rkgibso...@chromium.org, roagarw...@chromium.org, chasej...@chromium.org, gavin...@chromium.org, ukai+...@chromium.org, chromium-a...@chromium.org, hsuregan+wa...@chromium.org, webapks-...@chromium.org, pdr+svgw...@chromium.org, stanfie...@google.com, donnd...@chromium.org, xinghui...@chromium.org, jbrom...@chromium.org, ajayramamurth...@google.com, chromium-...@engflow.com, npm+...@chromium.org, sloboda...@chromium.org, lucasrada...@google.com, jackshira+w...@google.com, blink-re...@chromium.org, silv...@chromium.org, mek+w...@chromium.org, crostin...@chromium.org, eme-r...@chromium.org, phoglun...@chromium.org, shimazu...@chromium.org, fgal...@chromium.org, hansberry+wa...@chromium.org, hidehik...@chromium.org, tote-eng...@google.com, ajayramamurthy...@google.com, kenjibah...@chromium.org, jackshira+wa...@google.com, eic+...@google.com, wangdanny+fe...@google.com, kinuko...@chromium.org, browser-comp...@chromium.org, pushi+wa...@google.com, pushi+watc...@google.com, chromeos-kio...@google.com, ajwong...@chromium.org, emircan+watch...@chromium.org, derinel+wat...@google.com, loyso...@chromium.org, mfoltz+wa...@chromium.org, nwoked...@chromium.org, dom+...@chromium.org, polard...@google.com, shgar+aut...@google.com, julietlevesque...@google.com, dtseng...@chromium.org, lize...@chromium.org, dmurph+watch...@chromium.org, mkwst+w...@chromium.org, crost...@chromium.org, tburkar...@chromium.org, marinacio...@chromium.org, dmurph+watch...@chromium.org, horo+...@chromium.org, jiajunz+wat...@google.com, gavin...@chromium.org, mercer...@google.com, jophba...@chromium.org, ajayramamurthy+w...@google.com, chrome-intelligence-te...@google.com, ananyasee...@google.com, blink-work...@chromium.org, navigation...@chromium.org, siyua+aut...@chromium.org, stluon...@chromium.org, feature-v...@chromium.org, rsesek...@chromium.org, video-networking...@google.com, lwinston+watc...@google.com, dibyapal+wa...@chromium.org, lens-chrome...@google.com, jonmann+w...@chromium.org, khmel...@chromium.org, cwp-review...@google.com, iclella...@chromium.org, nona+...@chromium.org, petewi...@chromium.org, zol...@webkit.org, chfreme...@chromium.org, aashna...@google.com, vinnypersky+...@google.com, dmurph+watc...@chromium.org, byronle...@chromium.org, yusufo...@chromium.org, asumane...@google.com, ckitaga...@chromium.org, anastas...@google.com, michaelchec...@google.com, nickdiego+wa...@igalia.com, ender...@chromium.org, hansberry+w...@chromium.org, kouhe...@chromium.org, aleventh...@chromium.org, pasko...@chromium.org, dominicc+...@chromium.org, nyquis...@chromium.org, print-rev...@chromium.org, fserb...@chromium.org, jatapiaro+wat...@google.com, iwells...@chromium.org, msrame...@chromium.org, antoniosarto...@chromium.org, gcasto+w...@chromium.org, rginda...@chromium.org, lizeb...@chromium.org, shannc...@chromium.org, media-wi...@chromium.org, xiangdongkong+...@google.com, dmurph+watchin...@chromium.org, mickeybu...@chromium.org, chrome-intell...@chromium.org, mcasas+med...@chromium.org, menghua...@google.com, ajayramamurth...@google.com, yongshun+...@google.com, tgupta...@chromium.org, pmonett...@chromium.org, thegreenf...@chromium.org, ydago...@chromium.org, extension...@chromium.org, moqati-team+chr...@google.com, dfried...@chromium.org, fgorsk...@chromium.org, blink-revi...@chromium.org, edgesto...@microsoft.com, hansberry+wa...@chromium.org, language...@chromium.org, ios-r...@chromium.org, cros-setti...@google.com, arc-review...@google.com, davidj...@chromium.org, ajayramamurt...@google.com, ashleynewson+watch-...@chromium.org, eugeni...@chromium.org, lingqi...@chromium.org, christia...@chromium.org, martijn...@martijnc.be, torne...@chromium.org, pushi+wat...@google.com, mar...@chromium.org, yhanada...@chromium.org, gavinp...@chromium.org, dmblac...@google.com, chrome-tab-group-en...@google.com, kouhei...@chromium.org, vaapi-...@chromium.org, oilpan-rev...@chromium.org, core-timi...@chromium.org, ozone-...@chromium.org, toshikikikuch...@chromium.org, kouhe...@chromium.org, niharm...@google.com, cros-print...@google.com, max+watc...@igalia.com, wychen...@chromium.org, geoffla...@chromium.org, tracing...@chromium.org, zackha...@chromium.org, dewitt...@chromium.org, blink-revie...@chromium.org, longbowei+watc...@google.com, michaelcheco+...@google.com, asvitkine...@chromium.org, alexmo...@chromium.org, jmedle...@chromium.org, gl...@chromium.org, ayman...@chromium.org, gangwu...@chromium.org, spang...@chromium.org, scheduler...@chromium.org, bartek...@chromium.org, olka+...@chromium.org, suetfei+wa...@google.com, rhalava...@chromium.org, cc-...@chromium.org, tbarzi...@chromium.org, tluk+...@chromium.org, shend...@chromium.org, steimel+...@chromium.org, abigailbk...@google.com, longbowei+fe...@google.com, yyhyyh+fee...@google.com, ejcaruso+wa...@chromium.org, ashleydp+fe...@google.com, harringt...@chromium.org, jimmyxgong+w...@chromium.org, estali...@chromium.org, jackshira+wa...@google.com, jimmyxgong+watch...@chromium.org, cros-system-ui-prod...@google.com, ios-web-view...@google.com, dmurph+watchi...@chromium.org, mpdento...@chromium.org, ajayramamurthy...@google.com, oshima...@chromium.org, jeffreycohen+watc...@chromium.org, ios-revie...@chromium.org, cros-report...@google.com, jackshira+...@google.com, chungshe...@google.com, chadduffin+wa...@chromium.org, dclasson+w...@google.com, djacob...@chromium.org, roblia...@chromium.org, hansberry+wa...@chromium.org, rrsilva+wat...@google.com, jdeblas...@chromium.org, kinuko...@chromium.org, jonmann+watc...@chromium.org, dkrahn...@chromium.org, blink-rev...@chromium.org, filesapp...@chromium.org, penghu...@chromium.org, dmurph+watchi...@chromium.org, devtools...@chromium.org, loading-re...@chromium.org, hashimo...@chromium.org, titoua...@chromium.org, servicewor...@chromium.org, permissio...@chromium.org, web-schedulin...@chromium.org, agriev...@chromium.org, dcheng+c...@chromium.org, performance-m...@chromium.org, jz...@chromium.org, blink-re...@chromium.org, fmalit...@chromium.org, security-...@chromium.org, jorgel...@chromium.org, vakh+safe_br...@chromium.org, crmulli...@chromium.org, drott+bl...@chromium.org, hansberry+w...@chromium.org, asvitki...@chromium.org, jdonnel...@chromium.org, dmurph+watching...@chromium.org, zelin+watch-we...@chromium.org, srahim...@chromium.org, blink-...@chromium.org, blink-revie...@chromium.org, net-r...@chromium.org, storage...@chromium.org
            Attention needed from Himanshu Panwar

            Jatin Mittal added 5 comments

            File net/http/http_util.h
            Line 83, Patchset 9 (Latest): bool allow_whitespace);
            Adam Rice . resolved

            Are you going to add a use of this function with `allow_whitespace` set to false?

            Jatin Mittal

            I am planning to use allow_whitespace=false for the Fetch CORS-safelisted Range header check. The Fetch spec explicitly defines parsing a single range header with an allowWhitespace boolean ("To parse a single range header value from a byte sequence value and a boolean allowWhitespace, run these steps:"), so this parser is intended to be reused for that validation.

            Today, the CORS Range check in services/network/public/cpp/cors/cors.cc is implemented on top of the lenient ParseRangeHeader, with additional validation for LWS/comma handling, single-range enforcement, and suffix-range exclusion. The strict parser is intended to replace this hand-rolled validation.

            Since this affects observable CORS behavior, I'd prefer to make that migration in a dedicated follow-up CL with appropriate CORS/WPT coverage rather than expand the scope of this parser CL.

            Spec links:
            CORS-safelisted request-header (the range case, allowWhitespace = false):
            https://fetch.spec.whatwg.org/#cors-safelisted-request-header
            The shared parser this CL implements (parse a single range header value,
            takes an allowWhitespace boolean):
            https://fetch.spec.whatwg.org/#simple-range-header-value
            File net/http/http_util.cc
            Line 237, Patchset 9 (Latest):std::optional<HttpByteRange> HttpUtil::ParseFetchSingleRange(
            Adam Rice . resolved

            It's good to add a fuzzer when adding a new parser. This is very easy with the `FUZZ_TEST` macro: see https://chromium.googlesource.com/chromium/src/+/HEAD/testing/libfuzzer/getting_started.md

            Jatin Mittal

            Done. Added a `FUZZ_TEST` for `ParseFetchSingleRange` that fuzzes both the input string and the `allow_whitespace` flag, ensuring the parser never crashes. Also registered it in `net/BUILD.gn` under the `net_unittests` fuzztests list.

            Line 244, Patchset 9 (Latest): size_t pos = kBytesUnit.size();
            Adam Rice . resolved

            Nit: you can make a string parser more obviously correct by having a `std::string_view` variable that contains the parts of the string you haven't yet parsed, and removing chunks from the strong with the `remove_prefix()` method as you consume them. If you use high-level methods like `find_first_not_of()` you can avoid subscripting, and bounds checks can be replaced with `!remaining_input.empty()` checks. See https://source.chromium.org/chromium/chromium/src/+/main:net/third_party/uri_template/uri_template.cc;drc=362dbaf3c1048a93929fff003e784d537f3ebfbc;bpv=1;bpt=1;l=167?gsn=Expand&gs=KYTHE%3A%2F%2Fkythe%3A%2F%2Fchromium.googlesource.com%2Fcodesearch%2Fchromium%2Fsrc%2F%2Fmain%3Flang%3Dc%252B%252B%3Fpath%3Dnet%2Fthird_party%2Furi_template%2Furi_template.cc%23jarBFsW_57seV6_jeOna5zFFWAA5nzNowIAXLd5OK5Afor an example of this technique.

            This parser is simple enough that you don't need to do this, unless you want to.

            Jatin Mittal

            Thank you for the suggestion and for sharing the parsing pattern. I'll leave the implementation as-is for this CL, since, as you noted, the parser is simple enough that it doesn't require this approach. The current implementation keeps all accesses bounds-checked via the in_bounds() helper, and it is covered by both the unit tests and the new fuzzer, so I'd prefer to avoid refactoring the already-reviewed parsing logic for a stylistic change

            Line 305, Patchset 9 (Latest): std::optional<HttpByteRange> candidate_range;
            if (!range_start) {
            candidate_range = HttpByteRange::Suffix(*range_end);
            } else if (range_end) {
            candidate_range = HttpByteRange::Bounded(*range_start, *range_end);
            } else {
            candidate_range = HttpByteRange::RightUnbounded(*range_start);
            }
            return candidate_range;
            Adam Rice . resolved

            Why not do:

            ```suggestion
            if (!range_start) {
            return HttpByteRange::Suffix(*range_end);
            }
            if (!range_end) {
            return HttpByteRange::RightUnbounded(*range_start);
            }
            return HttpByteRange::Bounded(*range_start, *range_end);
            ```
            ?
            Jatin Mittal

            Good suggestion. Updated to use early returns and dropped the temporary `std::optional`.

            File net/http/http_util_unittest.cc
            Adam Rice . resolved

            Also good to test that we reject multiple ranges, and that extra '=' or '-' are rejected:
            ```
            "bytes=0-10,15-20",
            "bytes==0-5",
            "bytes=0--5",
            "bytes="0-5-",
            "bytes="-0-5",
            ```

            Jatin Mittal

            Done. Added test cases for multiple ranges (`bytes=0-10,15-20`) and invalid extra `=`/`-` delimiters (`bytes==0-5`, `bytes=0--5`, `bytes=0-5-`, and `bytes=-0-5`).

            Open in Gerrit

            Related details

            Attention is currently required from:
            • Himanshu Panwar
            Submit Requirements:
              • requirement satisfiedCode-Coverage
              • requirement satisfiedCode-Owners
              • requirement satisfiedCode-Review
              Gerrit-Comment-Date: Fri, 26 Jun 2026 11:59:00 +0000
              Gerrit-HasComments: Yes
              Gerrit-Has-Labels: No
              Comment-In-Reply-To: Adam Rice <ri...@chromium.org>
              satisfied_requirement
              unsatisfied_requirement
              open
              diffy

              Mike Taylor (Gerrit)

              unread,
              Jun 26, 2026, 9:03:46 AM (yesterday) Jun 26
              to Jatin Mittal, Takashi Toyoshima, Adam Rice, Rakina Zata Amni, Christian Biesinger, Urvang Joshi, Kevin McNee, Per Åhgren, Reid Kleckner, Ale Bzk, Fredrik Söderquist, Lei Zhang, Kenneth R Christiansen, Enterprise Policy Reviews, Ian Vollick, Jiewei Qian, Rijubrata Bhaumik, Mirko Bonadei, Daniel Cheng, Linyu He, Xida Chen, Ilya Biryukov, Josh Karlin, Anurag Simgeker, Sadrul Chowdhury, Hans Wennborg, James Maclean, Mangesh Ghiware, Sam Zackrisson, Mandy, Arnaud, Chromium Metrics Reviews, Michael Moss, Morten Stenshorne, Simon Hangl, Hiroki Nakagawa, Nikhil Nayunigari, Peter Beverloo, Sean Maher, Wang, Wei4, Peter Williamson, Ryan Sultanem, Shu Yang, Zhe Su, Charles Hager, Kevin Babbitt, Andrew Rayskiy, Kenneth Rohde Christiansen, Kentaro Hara, Khushal Sagar, Javier Fernandez, Stephen Chenney, Nico Weber, Hu, Ningxin, Hirokazu Honda, Avi Drissman, CJ DiMeglio, Nate Chapin, Sinan Sahin, Neil Coronado, Menard, Alexis, Zewen Li, Moe Adel, Tommy Li, Peter Collingbourne, (Julie)Jeongeun Kim, Thiabaud Engelbrecht, Yao Xiao, Raphael Kubo da Costa, Hongchan Choi, Jerome Jiang, Olga Gerchikov, Lin, Wanming, Heron Yang, AJITH KUMAR V, Sharon Yang, Fernando Fiori, Thorsten Kober, srirama chandra sekhar, Zijie He, Mark Schillaci, Dirk Schulze, AyeAye Python Dispatcher, kokoro, Himanshu Panwar, Mayur Patil, android-bu...@system.gserviceaccount.com, Chromium LUCI CQ, chromium...@chromium.org, blink-rev...@chromium.org, accessibility-a...@google.com, ddrone...@google.com, webauthn...@chromium.org, ashleynewson+watch...@chromium.org, crisrael+...@google.com, josiah...@chromium.org, xlythe+wa...@google.com, yhanad...@chromium.org, nicolas...@chromium.org, network-ser...@chromium.org, osaul+aut...@google.com, cros-ed...@google.com, halliwe...@chromium.org, droger+w...@chromium.org, mac-r...@chromium.org, meilian...@chromium.org, headless...@chromium.org, kuragin+web-ap...@chromium.org, blink-rev...@chromium.org, yigu+...@chromium.org, jackshira+w...@google.com, mlcui+watch-os-s...@google.com, marq+...@chromium.org, nikhilcn+wat...@google.com, weiluanw...@google.com, bmcquad...@chromium.org, glazuno...@chromium.org, kyungjunle...@google.com, blink-re...@chromium.org, enne...@chromium.org, nektar...@chromium.org, andysjl...@chromium.org, core-web-vita...@chromium.org, chrome-gr...@chromium.org, trewin...@google.com, dtapuska+...@chromium.org, wfh+...@chromuium.org, crisrael+wa...@google.com, dennyh...@google.com, xiaohui...@chromium.org, chikamu...@chromium.org, dtapuska+ch...@chromium.org, michaelcheco+wa...@google.com, keithle...@chromium.org, fenced-fra...@chromium.org, odejesu...@chromium.org, japhet+...@chromium.org, chromeos-gfx-...@google.com, sky+...@chromium.org, yhanada+...@chromium.org, fdoray...@chromium.org, crisrael+w...@google.com, gogeral...@chromium.org, jasonrhee+w...@google.com, danakj...@chromium.org, dmurph+wa...@chromium.org, hansberry+wat...@chromium.org, hanxi...@chromium.org, jackshira+wat...@google.com, mgiuca...@chromium.org, mfoltz+wa...@chromium.org, devtools-re...@chromium.org, lighthouse-eng-extern...@google.com, yuzo+...@chromium.org, ios-actor...@google.com, mfoltz+wa...@chromium.org, blink-revie...@chromium.org, creis...@chromium.org, loading-rev...@chromium.org, tranbaod...@chromium.org, jiajunz+wa...@google.com, bling-ai-foundatio...@google.com, blink-reviews-p...@chromium.org, bnc+...@chromium.org, siashah+au...@chromium.org, rmcelra...@chromium.org, webap...@microsoft.com, jbroma...@chromium.org, bling-alchemy-eng+...@google.com, jackshira+wat...@google.com, speed-metr...@chromium.org, caitkp...@chromium.org, schedule...@chromium.org, fuchsia...@chromium.org, ortuno...@chromium.org, speed-metrics...@chromium.org, yuezhang...@chromium.org, apavlo...@chromium.org, jonmann+wa...@chromium.org, erickun...@chromium.org, khorimoto+wa...@chromium.org, jasonrobe...@google.com, hsuregan+wat...@chromium.org, xiaochen...@chromium.org, borealis-re...@google.com, tommyw+w...@chromium.org, philli...@chromium.org, aji...@samsung.com, cblume...@chromium.org, stevenjb+wa...@chromium.org, yfriedm...@chromium.org, phshah...@chromium.org, pdf-r...@chromium.org, mdjone...@chromium.org, johnche...@chromium.org, cbe-cep-eng...@google.com, joeantonetti+wa...@google.com, chlily...@chromium.org, akingsb+wat...@google.com, jimmyxgong+wat...@chromium.org, ricea...@chromium.org, hiroshig...@chromium.org, print-revi...@chromium.org, hansenmichael...@google.com, dmurph+wat...@chromium.org, blink-rev...@chromium.org, vasilii+watchlis...@chromium.org, peter+watch...@chromium.org, scheduler-...@chromium.org, blink-revi...@chromium.org, wfh+...@chromium.org, jbauma...@chromium.org, knollr+wat...@chromium.org, ffred...@chromium.org, loading-rev...@chromium.org, gab+...@chromium.org, wnwen...@chromium.org, alandin...@chromium.org, cros-enterpris...@chromium.org, jackshira+w...@google.com, crisrael+wa...@google.com, mtomas...@chromium.org, francisjp...@google.com, ios-rev...@chromium.org, telemetr...@chromium.org, chromiumme...@microsoft.com, katie...@chromium.org, mattsimm...@chromium.org, android-web...@chromium.org, dullweb...@chromium.org, eric.c...@apple.com, hais+wat...@google.com, peilinwa...@google.com, prerenderi...@chromium.org, lizeb+watch...@chromium.org, croissant-...@chromium.org, yhanada+...@chromium.org, hirokisa...@chromium.org, blink-re...@chromium.org, translat...@chromium.org, ramyagopa...@google.com, gavinp...@chromium.org, pkotwic...@chromium.org, blink-revi...@chromium.org, khorimoto+w...@chromium.org, cros-essential...@chromium.org, glider...@chromium.org, jackshira+wa...@google.com, chili...@chromium.org, arthursonzog...@chromium.org, mattreyno...@chromium.org, omnibox-...@chromium.org, csharris...@chromium.org, dtraino...@chromium.org, shuche...@chromium.org, bhartmire+w...@google.com, shimazu+se...@chromium.org, kinuko+ser...@chromium.org, armalhotra+a...@google.com, chrome-regionalc...@google.com, dtseng+c...@chromium.org, twelling...@chromium.org, joeantonetti+...@google.com, chadduffin+w...@chromium.org, jshin...@chromium.org, jonmann+wat...@chromium.org, subresource-f...@chromium.org, kinuko+...@chromium.org, ntp-dev...@chromium.org, chromeos-ca...@google.com, csharrison+...@chromium.org, inca-eng...@google.com, feature-me...@chromium.org, jessemcke...@google.com, penghuan...@chromium.org, tmartino+tran...@chromium.org, media-cro...@chromium.org, rsleev...@chromium.org, chromotin...@chromium.org, aixba+wat...@chromium.org, loading...@chromium.org, rkgibso...@chromium.org, roagarw...@chromium.org, chasej...@chromium.org, gavin...@chromium.org, ukai+...@chromium.org, chromium-a...@chromium.org, hsuregan+wa...@chromium.org, webapks-...@chromium.org, pdr+svgw...@chromium.org, stanfie...@google.com, donnd...@chromium.org, xinghui...@chromium.org, jbrom...@chromium.org, ajayramamurth...@google.com, chromium-...@engflow.com, npm+...@chromium.org, sloboda...@chromium.org, lucasrada...@google.com, jackshira+w...@google.com, blink-re...@chromium.org, silv...@chromium.org, mek+w...@chromium.org, crostin...@chromium.org, eme-r...@chromium.org, phoglun...@chromium.org, shimazu...@chromium.org, fgal...@chromium.org, hansberry+wa...@chromium.org, hidehik...@chromium.org, tote-eng...@google.com, ajayramamurthy...@google.com, kenjibah...@chromium.org, jackshira+wa...@google.com, eic+...@google.com, wangdanny+fe...@google.com, kinuko...@chromium.org, browser-comp...@chromium.org, pushi+wa...@google.com, pushi+watc...@google.com, chromeos-kio...@google.com, ajwong...@chromium.org, emircan+watch...@chromium.org, derinel+wat...@google.com, loyso...@chromium.org, mfoltz+wa...@chromium.org, nwoked...@chromium.org, dom+...@chromium.org, polard...@google.com, shgar+aut...@google.com, julietlevesque...@google.com, dtseng...@chromium.org, lize...@chromium.org, dmurph+watch...@chromium.org, mkwst+w...@chromium.org, crost...@chromium.org, tburkar...@chromium.org, marinacio...@chromium.org, dmurph+watch...@chromium.org, horo+...@chromium.org, jiajunz+wat...@google.com, gavin...@chromium.org, mercer...@google.com, jophba...@chromium.org, ajayramamurthy+w...@google.com, chrome-intelligence-te...@google.com, ananyasee...@google.com, blink-work...@chromium.org, navigation...@chromium.org, siyua+aut...@chromium.org, stluon...@chromium.org, feature-v...@chromium.org, rsesek...@chromium.org, video-networking...@google.com, lwinston+watc...@google.com, dibyapal+wa...@chromium.org, lens-chrome...@google.com, jonmann+w...@chromium.org, khmel...@chromium.org, cwp-review...@google.com, iclella...@chromium.org, nona+...@chromium.org, petewi...@chromium.org, zol...@webkit.org, chfreme...@chromium.org, aashna...@google.com, vinnypersky+...@google.com, dmurph+watc...@chromium.org, byronle...@chromium.org, yusufo...@chromium.org, asumane...@google.com, ckitaga...@chromium.org, anastas...@google.com, michaelchec...@google.com, nickdiego+wa...@igalia.com, ender...@chromium.org, hansberry+w...@chromium.org, kouhe...@chromium.org, aleventh...@chromium.org, pasko...@chromium.org, dominicc+...@chromium.org, nyquis...@chromium.org, print-rev...@chromium.org, fserb...@chromium.org, jatapiaro+wat...@google.com, iwells...@chromium.org, msrame...@chromium.org, antoniosarto...@chromium.org, gcasto+w...@chromium.org, rginda...@chromium.org, lizeb...@chromium.org, shannc...@chromium.org, media-wi...@chromium.org, xiangdongkong+...@google.com, dmurph+watchin...@chromium.org, mickeybu...@chromium.org, chrome-intell...@chromium.org, mcasas+med...@chromium.org, menghua...@google.com, ajayramamurth...@google.com, yongshun+...@google.com, tgupta...@chromium.org, pmonett...@chromium.org, thegreenf...@chromium.org, ydago...@chromium.org, extension...@chromium.org, moqati-team+chr...@google.com, dfried...@chromium.org, fgorsk...@chromium.org, blink-revi...@chromium.org, edgesto...@microsoft.com, hansberry+wa...@chromium.org, language...@chromium.org, ios-r...@chromium.org, cros-setti...@google.com, arc-review...@google.com, davidj...@chromium.org, ajayramamurt...@google.com, ashleynewson+watch-...@chromium.org, eugeni...@chromium.org, lingqi...@chromium.org, christia...@chromium.org, martijn...@martijnc.be, torne...@chromium.org, pushi+wat...@google.com, mar...@chromium.org, yhanada...@chromium.org, gavinp...@chromium.org, dmblac...@google.com, chrome-tab-group-en...@google.com, kouhei...@chromium.org, vaapi-...@chromium.org, oilpan-rev...@chromium.org, core-timi...@chromium.org, ozone-...@chromium.org, toshikikikuch...@chromium.org, kouhe...@chromium.org, niharm...@google.com, cros-print...@google.com, max+watc...@igalia.com, wychen...@chromium.org, geoffla...@chromium.org, tracing...@chromium.org, zackha...@chromium.org, dewitt...@chromium.org, blink-revie...@chromium.org, longbowei+watc...@google.com, michaelcheco+...@google.com, asvitkine...@chromium.org, alexmo...@chromium.org, jmedle...@chromium.org, gl...@chromium.org, ayman...@chromium.org, gangwu...@chromium.org, spang...@chromium.org, scheduler...@chromium.org, bartek...@chromium.org, olka+...@chromium.org, suetfei+wa...@google.com, rhalava...@chromium.org, cc-...@chromium.org, tbarzi...@chromium.org, tluk+...@chromium.org, shend...@chromium.org, steimel+...@chromium.org, abigailbk...@google.com, longbowei+fe...@google.com, yyhyyh+fee...@google.com, ejcaruso+wa...@chromium.org, ashleydp+fe...@google.com, harringt...@chromium.org, jimmyxgong+w...@chromium.org, estali...@chromium.org, jackshira+wa...@google.com, jimmyxgong+watch...@chromium.org, cros-system-ui-prod...@google.com, ios-web-view...@google.com, dmurph+watchi...@chromium.org, mpdento...@chromium.org, ajayramamurthy...@google.com, oshima...@chromium.org, jeffreycohen+watc...@chromium.org, ios-revie...@chromium.org, cros-report...@google.com, jackshira+...@google.com, chungshe...@google.com, chadduffin+wa...@chromium.org, dclasson+w...@google.com, djacob...@chromium.org, roblia...@chromium.org, hansberry+wa...@chromium.org, rrsilva+wat...@google.com, jdeblas...@chromium.org, kinuko...@chromium.org, jonmann+watc...@chromium.org, dkrahn...@chromium.org, blink-rev...@chromium.org, filesapp...@chromium.org, penghu...@chromium.org, dmurph+watchi...@chromium.org, devtools...@chromium.org, loading-re...@chromium.org, hashimo...@chromium.org, titoua...@chromium.org, servicewor...@chromium.org, permissio...@chromium.org, web-schedulin...@chromium.org, agriev...@chromium.org, dcheng+c...@chromium.org, performance-m...@chromium.org, jz...@chromium.org, blink-re...@chromium.org, fmalit...@chromium.org, security-...@chromium.org, jorgel...@chromium.org, vakh+safe_br...@chromium.org, crmulli...@chromium.org, drott+bl...@chromium.org, hansberry+w...@chromium.org, asvitki...@chromium.org, jdonnel...@chromium.org, dmurph+watching...@chromium.org, zelin+watch-we...@chromium.org, srahim...@chromium.org, blink-...@chromium.org, blink-revie...@chromium.org, net-r...@chromium.org, storage...@chromium.org
              Attention needed from Adam Rice, Himanshu Panwar, Jatin Mittal, Rakina Zata Amni and Takashi Toyoshima

              Mike Taylor voted and added 1 comment

              Votes added by Mike Taylor

              Code-Review+1

              1 comment

              Patchset-level comments
              File-level comment, Patchset 10 (Latest):
              Mike Taylor . resolved

              third_party/blink/renderer/platform/runtime_enabled_features.json5 LGTM

              Open in Gerrit

              Related details

              Attention is currently required from:
              • Adam Rice
              • Himanshu Panwar
              • Jatin Mittal
              • Rakina Zata Amni
              • Takashi Toyoshima
              Submit Requirements:
              • requirement satisfiedCode-Coverage
              • requirement is not satisfiedCode-Owners
              • requirement is not satisfiedCode-Review
              • requirement is not satisfiedReview-Enforcement
              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: I8abf9ce8263dd3b2db2e43e728855be09338cee5
              Gerrit-Change-Number: 7902659
              Gerrit-PatchSet: 10
              Gerrit-Owner: Jatin Mittal <jatin...@microsoft.com>
              Gerrit-Reviewer: Adam Rice <ri...@chromium.org>
              Gerrit-Reviewer: Jatin Mittal <jatin...@microsoft.com>
              Gerrit-Reviewer: Mayur Patil <patil...@microsoft.com>
              Gerrit-Reviewer: Mike Taylor <mike...@chromium.org>
              Gerrit-Reviewer: Rakina Zata Amni <rak...@chromium.org>
              Gerrit-Reviewer: Takashi Toyoshima <toyo...@chromium.org>
              Gerrit-Attention: Takashi Toyoshima <toyo...@chromium.org>
              Gerrit-Attention: Himanshu Panwar <himp...@microsoft.com>
              Gerrit-Attention: Adam Rice <ri...@chromium.org>
              Gerrit-Attention: Jatin Mittal <jatin...@microsoft.com>
              Gerrit-Attention: Rakina Zata Amni <rak...@chromium.org>
              Gerrit-Comment-Date: Fri, 26 Jun 2026 13:03:18 +0000
              Gerrit-HasComments: Yes
              Gerrit-Has-Labels: Yes
              satisfied_requirement
              unsatisfied_requirement
              open
              diffy

              Mike Taylor (Gerrit)

              unread,
              Jun 26, 2026, 9:04:52 AM (yesterday) Jun 26
              to Jatin Mittal, Takashi Toyoshima, Adam Rice, Rakina Zata Amni, Christian Biesinger, Urvang Joshi, Kevin McNee, Per Åhgren, Reid Kleckner, Ale Bzk, Fredrik Söderquist, Lei Zhang, Kenneth R Christiansen, Enterprise Policy Reviews, Ian Vollick, Jiewei Qian, Rijubrata Bhaumik, Mirko Bonadei, Daniel Cheng, Linyu He, Xida Chen, Ilya Biryukov, Josh Karlin, Anurag Simgeker, Sadrul Chowdhury, Hans Wennborg, James Maclean, Mangesh Ghiware, Sam Zackrisson, Mandy, Arnaud, Chromium Metrics Reviews, Michael Moss, Morten Stenshorne, Simon Hangl, Hiroki Nakagawa, Nikhil Nayunigari, Peter Beverloo, Sean Maher, Wang, Wei4, Peter Williamson, Ryan Sultanem, Shu Yang, Zhe Su, Charles Hager, Kevin Babbitt, Andrew Rayskiy, Kenneth Rohde Christiansen, Kentaro Hara, Khushal Sagar, Javier Fernandez, Stephen Chenney, Nico Weber, Hu, Ningxin, Hirokazu Honda, Avi Drissman, CJ DiMeglio, Nate Chapin, Sinan Sahin, Neil Coronado, Menard, Alexis, Zewen Li, Moe Adel, Tommy Li, Peter Collingbourne, (Julie)Jeongeun Kim, Thiabaud Engelbrecht, Yao Xiao, Raphael Kubo da Costa, Hongchan Choi, Jerome Jiang, Olga Gerchikov, Lin, Wanming, Heron Yang, AJITH KUMAR V, Sharon Yang, Fernando Fiori, Thorsten Kober, srirama chandra sekhar, Zijie He, Mark Schillaci, Dirk Schulze, AyeAye Python Dispatcher, kokoro, Himanshu Panwar, Mayur Patil, android-bu...@system.gserviceaccount.com, Chromium LUCI CQ, chromium...@chromium.org, blink-rev...@chromium.org, accessibility-a...@google.com, ddrone...@google.com, webauthn...@chromium.org, ashleynewson+watch...@chromium.org, crisrael+...@google.com, josiah...@chromium.org, xlythe+wa...@google.com, yhanad...@chromium.org, nicolas...@chromium.org, network-ser...@chromium.org, osaul+aut...@google.com, cros-ed...@google.com, halliwe...@chromium.org, droger+w...@chromium.org, mac-r...@chromium.org, meilian...@chromium.org, headless...@chromium.org, kuragin+web-ap...@chromium.org, blink-rev...@chromium.org, yigu+...@chromium.org, jackshira+w...@google.com, mlcui+watch-os-s...@google.com, marq+...@chromium.org, nikhilcn+wat...@google.com, weiluanw...@google.com, bmcquad...@chromium.org, glazuno...@chromium.org, kyungjunle...@google.com, blink-re...@chromium.org, enne...@chromium.org, nektar...@chromium.org, andysjl...@chromium.org, core-web-vita...@chromium.org, chrome-gr...@chromium.org, trewin...@google.com, dtapuska+...@chromium.org, wfh+...@chromuium.org, crisrael+wa...@google.com, dennyh...@google.com, xiaohui...@chromium.org, chikamu...@chromium.org, dtapuska+ch...@chromium.org, michaelcheco+wa...@google.com, keithle...@chromium.org, fenced-fra...@chromium.org, odejesu...@chromium.org, japhet+...@chromium.org, chromeos-gfx-...@google.com, sky+...@chromium.org, yhanada+...@chromium.org, fdoray...@chromium.org, crisrael+w...@google.com, gogeral...@chromium.org, jasonrhee+w...@google.com, danakj...@chromium.org, dmurph+wa...@chromium.org, hansberry+wat...@chromium.org, hanxi...@chromium.org, jackshira+wat...@google.com, mgiuca...@chromium.org, mfoltz+wa...@chromium.org, devtools-re...@chromium.org, lighthouse-eng-extern...@google.com, yuzo+...@chromium.org, ios-actor...@google.com, mfoltz+wa...@chromium.org, blink-revie...@chromium.org, creis...@chromium.org, loading-rev...@chromium.org, tranbaod...@chromium.org, jiajunz+wa...@google.com, bling-ai-foundatio...@google.com, blink-reviews-p...@chromium.org, bnc+...@chromium.org, siashah+au...@chromium.org, rmcelra...@chromium.org, webap...@microsoft.com, jbroma...@chromium.org, bling-alchemy-eng+...@google.com, jackshira+wat...@google.com, speed-metr...@chromium.org, caitkp...@chromium.org, schedule...@chromium.org, fuchsia...@chromium.org, ortuno...@chromium.org, speed-metrics...@chromium.org, yuezhang...@chromium.org, apavlo...@chromium.org, jonmann+wa...@chromium.org, erickun...@chromium.org, khorimoto+wa...@chromium.org, jasonrobe...@google.com, hsuregan+wat...@chromium.org, xiaochen...@chromium.org, borealis-re...@google.com, tommyw+w...@chromium.org, philli...@chromium.org, aji...@samsung.com, cblume...@chromium.org, stevenjb+wa...@chromium.org, yfriedm...@chromium.org, phshah...@chromium.org, pdf-r...@chromium.org, mdjone...@chromium.org, johnche...@chromium.org, cbe-cep-eng...@google.com, joeantonetti+wa...@google.com, chlily...@chromium.org, akingsb+wat...@google.com, jimmyxgong+wat...@chromium.org, ricea...@chromium.org, hiroshig...@chromium.org, print-revi...@chromium.org, hansenmichael...@google.com, dmurph+wat...@chromium.org, blink-rev...@chromium.org, vasilii+watchlis...@chromium.org, peter+watch...@chromium.org, scheduler-...@chromium.org, blink-revi...@chromium.org, wfh+...@chromium.org, jbauma...@chromium.org, knollr+wat...@chromium.org, ffred...@chromium.org, loading-rev...@chromium.org, gab+...@chromium.org, wnwen...@chromium.org, alandin...@chromium.org, cros-enterpris...@chromium.org, jackshira+w...@google.com, crisrael+wa...@google.com, mtomas...@chromium.org, francisjp...@google.com, ios-rev...@chromium.org, telemetr...@chromium.org, chromiumme...@microsoft.com, katie...@chromium.org, mattsimm...@chromium.org, android-web...@chromium.org, dullweb...@chromium.org, eric.c...@apple.com, hais+wat...@google.com, peilinwa...@google.com, prerenderi...@chromium.org, lizeb+watch...@chromium.org, croissant-...@chromium.org, yhanada+...@chromium.org, hirokisa...@chromium.org, blink-re...@chromium.org, translat...@chromium.org, ramyagopa...@google.com, gavinp...@chromium.org, pkotwic...@chromium.org, blink-revi...@chromium.org, khorimoto+w...@chromium.org, cros-essential...@chromium.org, glider...@chromium.org, jackshira+wa...@google.com, chili...@chromium.org, arthursonzog...@chromium.org, mattreyno...@chromium.org, omnibox-...@chromium.org, csharris...@chromium.org, dtraino...@chromium.org, shuche...@chromium.org, bhartmire+w...@google.com, shimazu+se...@chromium.org, kinuko+ser...@chromium.org, armalhotra+a...@google.com, chrome-regionalc...@google.com, dtseng+c...@chromium.org, twelling...@chromium.org, joeantonetti+...@google.com, chadduffin+w...@chromium.org, jshin...@chromium.org, jonmann+wat...@chromium.org, subresource-f...@chromium.org, kinuko+...@chromium.org, ntp-dev...@chromium.org, chromeos-ca...@google.com, csharrison+...@chromium.org, inca-eng...@google.com, feature-me...@chromium.org, jessemcke...@google.com, penghuan...@chromium.org, tmartino+tran...@chromium.org, media-cro...@chromium.org, rsleev...@chromium.org, chromotin...@chromium.org, aixba+wat...@chromium.org, loading...@chromium.org, rkgibso...@chromium.org, roagarw...@chromium.org, chasej...@chromium.org, gavin...@chromium.org, ukai+...@chromium.org, chromium-a...@chromium.org, hsuregan+wa...@chromium.org, webapks-...@chromium.org, pdr+svgw...@chromium.org, stanfie...@google.com, donnd...@chromium.org, xinghui...@chromium.org, jbrom...@chromium.org, ajayramamurth...@google.com, chromium-...@engflow.com, npm+...@chromium.org, sloboda...@chromium.org, lucasrada...@google.com, jackshira+w...@google.com, blink-re...@chromium.org, silv...@chromium.org, mek+w...@chromium.org, crostin...@chromium.org, eme-r...@chromium.org, phoglun...@chromium.org, shimazu...@chromium.org, fgal...@chromium.org, hansberry+wa...@chromium.org, hidehik...@chromium.org, tote-eng...@google.com, ajayramamurthy...@google.com, kenjibah...@chromium.org, jackshira+wa...@google.com, eic+...@google.com, wangdanny+fe...@google.com, kinuko...@chromium.org, browser-comp...@chromium.org, pushi+wa...@google.com, pushi+watc...@google.com, chromeos-kio...@google.com, ajwong...@chromium.org, emircan+watch...@chromium.org, derinel+wat...@google.com, loyso...@chromium.org, mfoltz+wa...@chromium.org, nwoked...@chromium.org, dom+...@chromium.org, polard...@google.com, shgar+aut...@google.com, julietlevesque...@google.com, dtseng...@chromium.org, lize...@chromium.org, dmurph+watch...@chromium.org, mkwst+w...@chromium.org, crost...@chromium.org, tburkar...@chromium.org, marinacio...@chromium.org, dmurph+watch...@chromium.org, horo+...@chromium.org, jiajunz+wat...@google.com, gavin...@chromium.org, mercer...@google.com, jophba...@chromium.org, ajayramamurthy+w...@google.com, chrome-intelligence-te...@google.com, ananyasee...@google.com, blink-work...@chromium.org, navigation...@chromium.org, siyua+aut...@chromium.org, stluon...@chromium.org, feature-v...@chromium.org, rsesek...@chromium.org, video-networking...@google.com, lwinston+watc...@google.com, dibyapal+wa...@chromium.org, lens-chrome...@google.com, jonmann+w...@chromium.org, khmel...@chromium.org, cwp-review...@google.com, iclella...@chromium.org, nona+...@chromium.org, petewi...@chromium.org, zol...@webkit.org, chfreme...@chromium.org, aashna...@google.com, vinnypersky+...@google.com, dmurph+watc...@chromium.org, byronle...@chromium.org, yusufo...@chromium.org, asumane...@google.com, ckitaga...@chromium.org, anastas...@google.com, michaelchec...@google.com, nickdiego+wa...@igalia.com, ender...@chromium.org, hansberry+w...@chromium.org, kouhe...@chromium.org, aleventh...@chromium.org, pasko...@chromium.org, dominicc+...@chromium.org, nyquis...@chromium.org, print-rev...@chromium.org, fserb...@chromium.org, jatapiaro+wat...@google.com, iwells...@chromium.org, msrame...@chromium.org, antoniosarto...@chromium.org, gcasto+w...@chromium.org, rginda...@chromium.org, lizeb...@chromium.org, shannc...@chromium.org, media-wi...@chromium.org, xiangdongkong+...@google.com, dmurph+watchin...@chromium.org, mickeybu...@chromium.org, chrome-intell...@chromium.org, mcasas+med...@chromium.org, menghua...@google.com, ajayramamurth...@google.com, yongshun+...@google.com, tgupta...@chromium.org, pmonett...@chromium.org, thegreenf...@chromium.org, ydago...@chromium.org, extension...@chromium.org, moqati-team+chr...@google.com, dfried...@chromium.org, fgorsk...@chromium.org, blink-revi...@chromium.org, edgesto...@microsoft.com, hansberry+wa...@chromium.org, language...@chromium.org, ios-r...@chromium.org, cros-setti...@google.com, arc-review...@google.com, davidj...@chromium.org, ajayramamurt...@google.com, ashleynewson+watch-...@chromium.org, eugeni...@chromium.org, lingqi...@chromium.org, christia...@chromium.org, martijn...@martijnc.be, torne...@chromium.org, pushi+wat...@google.com, mar...@chromium.org, yhanada...@chromium.org, gavinp...@chromium.org, dmblac...@google.com, chrome-tab-group-en...@google.com, kouhei...@chromium.org, vaapi-...@chromium.org, oilpan-rev...@chromium.org, core-timi...@chromium.org, ozone-...@chromium.org, toshikikikuch...@chromium.org, kouhe...@chromium.org, niharm...@google.com, cros-print...@google.com, max+watc...@igalia.com, wychen...@chromium.org, geoffla...@chromium.org, tracing...@chromium.org, zackha...@chromium.org, dewitt...@chromium.org, blink-revie...@chromium.org, longbowei+watc...@google.com, michaelcheco+...@google.com, asvitkine...@chromium.org, alexmo...@chromium.org, jmedle...@chromium.org, gl...@chromium.org, ayman...@chromium.org, gangwu...@chromium.org, spang...@chromium.org, scheduler...@chromium.org, bartek...@chromium.org, olka+...@chromium.org, suetfei+wa...@google.com, rhalava...@chromium.org, cc-...@chromium.org, tbarzi...@chromium.org, tluk+...@chromium.org, shend...@chromium.org, steimel+...@chromium.org, abigailbk...@google.com, longbowei+fe...@google.com, yyhyyh+fee...@google.com, ejcaruso+wa...@chromium.org, ashleydp+fe...@google.com, harringt...@chromium.org, jimmyxgong+w...@chromium.org, estali...@chromium.org, jackshira+wa...@google.com, jimmyxgong+watch...@chromium.org, cros-system-ui-prod...@google.com, ios-web-view...@google.com, dmurph+watchi...@chromium.org, mpdento...@chromium.org, ajayramamurthy...@google.com, oshima...@chromium.org, jeffreycohen+watc...@chromium.org, ios-revie...@chromium.org, cros-report...@google.com, jackshira+...@google.com, chungshe...@google.com, chadduffin+wa...@chromium.org, dclasson+w...@google.com, djacob...@chromium.org, roblia...@chromium.org, hansberry+wa...@chromium.org, rrsilva+wat...@google.com, jdeblas...@chromium.org, kinuko...@chromium.org, jonmann+watc...@chromium.org, dkrahn...@chromium.org, blink-rev...@chromium.org, filesapp...@chromium.org, penghu...@chromium.org, dmurph+watchi...@chromium.org, devtools...@chromium.org, loading-re...@chromium.org, hashimo...@chromium.org, titoua...@chromium.org, servicewor...@chromium.org, permissio...@chromium.org, web-schedulin...@chromium.org, agriev...@chromium.org, dcheng+c...@chromium.org, performance-m...@chromium.org, jz...@chromium.org, blink-re...@chromium.org, fmalit...@chromium.org, security-...@chromium.org, jorgel...@chromium.org, vakh+safe_br...@chromium.org, crmulli...@chromium.org, drott+bl...@chromium.org, hansberry+w...@chromium.org, asvitki...@chromium.org, jdonnel...@chromium.org, dmurph+watching...@chromium.org, zelin+watch-we...@chromium.org, srahim...@chromium.org, blink-...@chromium.org, blink-revie...@chromium.org, net-r...@chromium.org, storage...@chromium.org
              Attention needed from Adam Rice, Himanshu Panwar, Jatin Mittal, Rakina Zata Amni and Takashi Toyoshima

              Mike Taylor added 1 comment

              Patchset-level comments
              Mike Taylor . unresolved

              I just noticed there's 500 people in CC? That doesn't seem right... did an agent do that?

              Open in Gerrit

              Related details

              Attention is currently required from:
              • Adam Rice
              • Himanshu Panwar
              • Jatin Mittal
              • Rakina Zata Amni
              • Takashi Toyoshima
              Submit Requirements:
                • requirement satisfiedCode-Coverage
                • requirement is not satisfiedCode-Owners
                • requirement is not satisfiedCode-Review
                • requirement is not satisfiedNo-Unresolved-Comments
                Gerrit-Comment-Date: Fri, 26 Jun 2026 13:04:38 +0000
                Gerrit-HasComments: Yes
                Gerrit-Has-Labels: No
                satisfied_requirement
                unsatisfied_requirement
                open
                diffy

                Jatin Mittal (Gerrit)

                unread,
                Jun 26, 2026, 9:08:20 AM (yesterday) Jun 26
                to Takashi Toyoshima, Mike Taylor, Adam Rice, Rakina Zata Amni, Christian Biesinger, Urvang Joshi, Kevin McNee, Per Åhgren, Reid Kleckner, Ale Bzk, Fredrik Söderquist, Lei Zhang, Kenneth R Christiansen, Enterprise Policy Reviews, Ian Vollick, Jiewei Qian, Rijubrata Bhaumik, Mirko Bonadei, Daniel Cheng, Linyu He, Xida Chen, Ilya Biryukov, Josh Karlin, Anurag Simgeker, Sadrul Chowdhury, Hans Wennborg, James Maclean, Mangesh Ghiware, Sam Zackrisson, Mandy, Arnaud, Chromium Metrics Reviews, Michael Moss, Morten Stenshorne, Simon Hangl, Hiroki Nakagawa, Nikhil Nayunigari, Peter Beverloo, Sean Maher, Wang, Wei4, Peter Williamson, Ryan Sultanem, Shu Yang, Zhe Su, Charles Hager, Kevin Babbitt, Andrew Rayskiy, Kenneth Rohde Christiansen, Kentaro Hara, Khushal Sagar, Javier Fernandez, Stephen Chenney, Nico Weber, Hu, Ningxin, Hirokazu Honda, Avi Drissman, CJ DiMeglio, Nate Chapin, Sinan Sahin, Neil Coronado, Menard, Alexis, Zewen Li, Moe Adel, Tommy Li, Peter Collingbourne, (Julie)Jeongeun Kim, Thiabaud Engelbrecht, Yao Xiao, Raphael Kubo da Costa, Hongchan Choi, Jerome Jiang, Olga Gerchikov, Lin, Wanming, Heron Yang, AJITH KUMAR V, Sharon Yang, Fernando Fiori, Thorsten Kober, srirama chandra sekhar, Zijie He, Mark Schillaci, Dirk Schulze, AyeAye Python Dispatcher, kokoro, Himanshu Panwar, Mayur Patil, android-bu...@system.gserviceaccount.com, Chromium LUCI CQ, chromium...@chromium.org, blink-rev...@chromium.org, accessibility-a...@google.com, ddrone...@google.com, webauthn...@chromium.org, ashleynewson+watch...@chromium.org, crisrael+...@google.com, josiah...@chromium.org, xlythe+wa...@google.com, yhanad...@chromium.org, nicolas...@chromium.org, network-ser...@chromium.org, osaul+aut...@google.com, cros-ed...@google.com, halliwe...@chromium.org, droger+w...@chromium.org, mac-r...@chromium.org, meilian...@chromium.org, headless...@chromium.org, kuragin+web-ap...@chromium.org, blink-rev...@chromium.org, yigu+...@chromium.org, jackshira+w...@google.com, mlcui+watch-os-s...@google.com, marq+...@chromium.org, nikhilcn+wat...@google.com, weiluanw...@google.com, bmcquad...@chromium.org, glazuno...@chromium.org, kyungjunle...@google.com, blink-re...@chromium.org, enne...@chromium.org, nektar...@chromium.org, andysjl...@chromium.org, core-web-vita...@chromium.org, chrome-gr...@chromium.org, trewin...@google.com, dtapuska+...@chromium.org, wfh+...@chromuium.org, crisrael+wa...@google.com, dennyh...@google.com, xiaohui...@chromium.org, chikamu...@chromium.org, dtapuska+ch...@chromium.org, michaelcheco+wa...@google.com, keithle...@chromium.org, fenced-fra...@chromium.org, odejesu...@chromium.org, japhet+...@chromium.org, chromeos-gfx-...@google.com, sky+...@chromium.org, yhanada+...@chromium.org, fdoray...@chromium.org, crisrael+w...@google.com, gogeral...@chromium.org, jasonrhee+w...@google.com, danakj...@chromium.org, dmurph+wa...@chromium.org, hansberry+wat...@chromium.org, hanxi...@chromium.org, jackshira+wat...@google.com, mgiuca...@chromium.org, mfoltz+wa...@chromium.org, devtools-re...@chromium.org, lighthouse-eng-extern...@google.com, yuzo+...@chromium.org, ios-actor...@google.com, mfoltz+wa...@chromium.org, blink-revie...@chromium.org, creis...@chromium.org, loading-rev...@chromium.org, tranbaod...@chromium.org, jiajunz+wa...@google.com, bling-ai-foundatio...@google.com, blink-reviews-p...@chromium.org, bnc+...@chromium.org, siashah+au...@chromium.org, rmcelra...@chromium.org, webap...@microsoft.com, jbroma...@chromium.org, bling-alchemy-eng+...@google.com, jackshira+wat...@google.com, speed-metr...@chromium.org, caitkp...@chromium.org, schedule...@chromium.org, fuchsia...@chromium.org, ortuno...@chromium.org, speed-metrics...@chromium.org, yuezhang...@chromium.org, apavlo...@chromium.org, jonmann+wa...@chromium.org, erickun...@chromium.org, khorimoto+wa...@chromium.org, jasonrobe...@google.com, hsuregan+wat...@chromium.org, xiaochen...@chromium.org, borealis-re...@google.com, tommyw+w...@chromium.org, philli...@chromium.org, aji...@samsung.com, cblume...@chromium.org, stevenjb+wa...@chromium.org, yfriedm...@chromium.org, phshah...@chromium.org, pdf-r...@chromium.org, mdjone...@chromium.org, johnche...@chromium.org, cbe-cep-eng...@google.com, joeantonetti+wa...@google.com, chlily...@chromium.org, akingsb+wat...@google.com, jimmyxgong+wat...@chromium.org, ricea...@chromium.org, hiroshig...@chromium.org, print-revi...@chromium.org, hansenmichael...@google.com, dmurph+wat...@chromium.org, blink-rev...@chromium.org, vasilii+watchlis...@chromium.org, peter+watch...@chromium.org, scheduler-...@chromium.org, blink-revi...@chromium.org, wfh+...@chromium.org, jbauma...@chromium.org, knollr+wat...@chromium.org, ffred...@chromium.org, loading-rev...@chromium.org, gab+...@chromium.org, wnwen...@chromium.org, alandin...@chromium.org, cros-enterpris...@chromium.org, jackshira+w...@google.com, crisrael+wa...@google.com, mtomas...@chromium.org, francisjp...@google.com, ios-rev...@chromium.org, telemetr...@chromium.org, chromiumme...@microsoft.com, katie...@chromium.org, mattsimm...@chromium.org, android-web...@chromium.org, dullweb...@chromium.org, eric.c...@apple.com, hais+wat...@google.com, peilinwa...@google.com, prerenderi...@chromium.org, lizeb+watch...@chromium.org, croissant-...@chromium.org, yhanada+...@chromium.org, hirokisa...@chromium.org, blink-re...@chromium.org, translat...@chromium.org, ramyagopa...@google.com, gavinp...@chromium.org, pkotwic...@chromium.org, blink-revi...@chromium.org, khorimoto+w...@chromium.org, cros-essential...@chromium.org, glider...@chromium.org, jackshira+wa...@google.com, chili...@chromium.org, arthursonzog...@chromium.org, mattreyno...@chromium.org, omnibox-...@chromium.org, csharris...@chromium.org, dtraino...@chromium.org, shuche...@chromium.org, bhartmire+w...@google.com, shimazu+se...@chromium.org, kinuko+ser...@chromium.org, armalhotra+a...@google.com, chrome-regionalc...@google.com, dtseng+c...@chromium.org, twelling...@chromium.org, joeantonetti+...@google.com, chadduffin+w...@chromium.org, jshin...@chromium.org, jonmann+wat...@chromium.org, subresource-f...@chromium.org, kinuko+...@chromium.org, ntp-dev...@chromium.org, chromeos-ca...@google.com, csharrison+...@chromium.org, inca-eng...@google.com, feature-me...@chromium.org, jessemcke...@google.com, penghuan...@chromium.org, tmartino+tran...@chromium.org, media-cro...@chromium.org, rsleev...@chromium.org, chromotin...@chromium.org, aixba+wat...@chromium.org, loading...@chromium.org, rkgibso...@chromium.org, roagarw...@chromium.org, chasej...@chromium.org, gavin...@chromium.org, ukai+...@chromium.org, chromium-a...@chromium.org, hsuregan+wa...@chromium.org, webapks-...@chromium.org, pdr+svgw...@chromium.org, stanfie...@google.com, donnd...@chromium.org, xinghui...@chromium.org, jbrom...@chromium.org, ajayramamurth...@google.com, chromium-...@engflow.com, npm+...@chromium.org, sloboda...@chromium.org, lucasrada...@google.com, jackshira+w...@google.com, blink-re...@chromium.org, silv...@chromium.org, mek+w...@chromium.org, crostin...@chromium.org, eme-r...@chromium.org, phoglun...@chromium.org, shimazu...@chromium.org, fgal...@chromium.org, hansberry+wa...@chromium.org, hidehik...@chromium.org, tote-eng...@google.com, ajayramamurthy...@google.com, kenjibah...@chromium.org, jackshira+wa...@google.com, eic+...@google.com, wangdanny+fe...@google.com, kinuko...@chromium.org, browser-comp...@chromium.org, pushi+wa...@google.com, pushi+watc...@google.com, chromeos-kio...@google.com, ajwong...@chromium.org, emircan+watch...@chromium.org, derinel+wat...@google.com, loyso...@chromium.org, mfoltz+wa...@chromium.org, nwoked...@chromium.org, dom+...@chromium.org, polard...@google.com, shgar+aut...@google.com, julietlevesque...@google.com, dtseng...@chromium.org, lize...@chromium.org, dmurph+watch...@chromium.org, mkwst+w...@chromium.org, crost...@chromium.org, tburkar...@chromium.org, marinacio...@chromium.org, dmurph+watch...@chromium.org, horo+...@chromium.org, jiajunz+wat...@google.com, gavin...@chromium.org, mercer...@google.com, jophba...@chromium.org, ajayramamurthy+w...@google.com, chrome-intelligence-te...@google.com, ananyasee...@google.com, blink-work...@chromium.org, navigation...@chromium.org, siyua+aut...@chromium.org, stluon...@chromium.org, feature-v...@chromium.org, rsesek...@chromium.org, video-networking...@google.com, lwinston+watc...@google.com, dibyapal+wa...@chromium.org, lens-chrome...@google.com, jonmann+w...@chromium.org, khmel...@chromium.org, cwp-review...@google.com, iclella...@chromium.org, nona+...@chromium.org, petewi...@chromium.org, zol...@webkit.org, chfreme...@chromium.org, aashna...@google.com, vinnypersky+...@google.com, dmurph+watc...@chromium.org, byronle...@chromium.org, yusufo...@chromium.org, asumane...@google.com, ckitaga...@chromium.org, anastas...@google.com, michaelchec...@google.com, nickdiego+wa...@igalia.com, ender...@chromium.org, hansberry+w...@chromium.org, kouhe...@chromium.org, aleventh...@chromium.org, pasko...@chromium.org, dominicc+...@chromium.org, nyquis...@chromium.org, print-rev...@chromium.org, fserb...@chromium.org, jatapiaro+wat...@google.com, iwells...@chromium.org, msrame...@chromium.org, antoniosarto...@chromium.org, gcasto+w...@chromium.org, rginda...@chromium.org, lizeb...@chromium.org, shannc...@chromium.org, media-wi...@chromium.org, xiangdongkong+...@google.com, dmurph+watchin...@chromium.org, mickeybu...@chromium.org, chrome-intell...@chromium.org, mcasas+med...@chromium.org, menghua...@google.com, ajayramamurth...@google.com, yongshun+...@google.com, tgupta...@chromium.org, pmonett...@chromium.org, thegreenf...@chromium.org, ydago...@chromium.org, extension...@chromium.org, moqati-team+chr...@google.com, dfried...@chromium.org, fgorsk...@chromium.org, blink-revi...@chromium.org, edgesto...@microsoft.com, hansberry+wa...@chromium.org, language...@chromium.org, ios-r...@chromium.org, cros-setti...@google.com, arc-review...@google.com, davidj...@chromium.org, ajayramamurt...@google.com, ashleynewson+watch-...@chromium.org, eugeni...@chromium.org, lingqi...@chromium.org, christia...@chromium.org, martijn...@martijnc.be, torne...@chromium.org, pushi+wat...@google.com, mar...@chromium.org, yhanada...@chromium.org, gavinp...@chromium.org, dmblac...@google.com, chrome-tab-group-en...@google.com, kouhei...@chromium.org, vaapi-...@chromium.org, oilpan-rev...@chromium.org, core-timi...@chromium.org, ozone-...@chromium.org, toshikikikuch...@chromium.org, kouhe...@chromium.org, niharm...@google.com, cros-print...@google.com, max+watc...@igalia.com, wychen...@chromium.org, geoffla...@chromium.org, tracing...@chromium.org, zackha...@chromium.org, dewitt...@chromium.org, blink-revie...@chromium.org, longbowei+watc...@google.com, michaelcheco+...@google.com, asvitkine...@chromium.org, alexmo...@chromium.org, jmedle...@chromium.org, gl...@chromium.org, ayman...@chromium.org, gangwu...@chromium.org, spang...@chromium.org, scheduler...@chromium.org, bartek...@chromium.org, olka+...@chromium.org, suetfei+wa...@google.com, rhalava...@chromium.org, cc-...@chromium.org, tbarzi...@chromium.org, tluk+...@chromium.org, shend...@chromium.org, steimel+...@chromium.org, abigailbk...@google.com, longbowei+fe...@google.com, yyhyyh+fee...@google.com, ejcaruso+wa...@chromium.org, ashleydp+fe...@google.com, harringt...@chromium.org, jimmyxgong+w...@chromium.org, estali...@chromium.org, jackshira+wa...@google.com, jimmyxgong+watch...@chromium.org, cros-system-ui-prod...@google.com, ios-web-view...@google.com, dmurph+watchi...@chromium.org, mpdento...@chromium.org, ajayramamurthy...@google.com, oshima...@chromium.org, jeffreycohen+watc...@chromium.org, ios-revie...@chromium.org, cros-report...@google.com, jackshira+...@google.com, chungshe...@google.com, chadduffin+wa...@chromium.org, dclasson+w...@google.com, djacob...@chromium.org, roblia...@chromium.org, hansberry+wa...@chromium.org, rrsilva+wat...@google.com, jdeblas...@chromium.org, kinuko...@chromium.org, jonmann+watc...@chromium.org, dkrahn...@chromium.org, blink-rev...@chromium.org, filesapp...@chromium.org, penghu...@chromium.org, dmurph+watchi...@chromium.org, devtools...@chromium.org, loading-re...@chromium.org, hashimo...@chromium.org, titoua...@chromium.org, servicewor...@chromium.org, permissio...@chromium.org, web-schedulin...@chromium.org, agriev...@chromium.org, dcheng+c...@chromium.org, performance-m...@chromium.org, jz...@chromium.org, blink-re...@chromium.org, fmalit...@chromium.org, security-...@chromium.org, jorgel...@chromium.org, vakh+safe_br...@chromium.org, crmulli...@chromium.org, drott+bl...@chromium.org, hansberry+w...@chromium.org, asvitki...@chromium.org, jdonnel...@chromium.org, dmurph+watching...@chromium.org, zelin+watch-we...@chromium.org, srahim...@chromium.org, blink-...@chromium.org, blink-revie...@chromium.org, net-r...@chromium.org, storage...@chromium.org
                Attention needed from Adam Rice, Himanshu Panwar, Jatin Mittal and Rakina Zata Amni

                Jatin Mittal removed Takashi Toyoshima from this change

                Deleted Reviewers:
                • Takashi Toyoshima
                Open in Gerrit

                Related details

                Attention is currently required from:
                • Adam Rice
                • Himanshu Panwar
                • Jatin Mittal
                • Rakina Zata Amni
                Submit Requirements:
                • requirement satisfiedCode-Coverage
                • requirement is not satisfiedCode-Owners
                • requirement is not satisfiedCode-Review
                • requirement is not satisfiedNo-Unresolved-Comments
                • requirement is not satisfiedReview-Enforcement
                Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
                Gerrit-MessageType: deleteReviewer
                Gerrit-Project: chromium/src
                Gerrit-Branch: main
                Gerrit-Change-Id: I8abf9ce8263dd3b2db2e43e728855be09338cee5
                Gerrit-Change-Number: 7902659
                Gerrit-PatchSet: 10
                Gerrit-Owner: Jatin Mittal <jatin...@microsoft.com>
                Gerrit-Reviewer: Adam Rice <ri...@chromium.org>
                Gerrit-Reviewer: Jatin Mittal <jatin...@microsoft.com>
                Gerrit-Reviewer: Mayur Patil <patil...@microsoft.com>
                Gerrit-Reviewer: Mike Taylor <mike...@chromium.org>
                Gerrit-Reviewer: Rakina Zata Amni <rak...@chromium.org>
                satisfied_requirement
                unsatisfied_requirement
                open
                diffy

                Jatin Mittal (Gerrit)

                unread,
                Jun 26, 2026, 9:12:32 AM (yesterday) Jun 26
                to Mike Taylor, Adam Rice, Rakina Zata Amni, Christian Biesinger, Urvang Joshi, Kevin McNee, Per Åhgren, Reid Kleckner, Ale Bzk, Fredrik Söderquist, Lei Zhang, Kenneth R Christiansen, Enterprise Policy Reviews, Ian Vollick, Jiewei Qian, Rijubrata Bhaumik, Mirko Bonadei, Daniel Cheng, Linyu He, Xida Chen, Ilya Biryukov, Josh Karlin, Anurag Simgeker, Sadrul Chowdhury, Hans Wennborg, James Maclean, Mangesh Ghiware, Sam Zackrisson, Mandy, Arnaud, Chromium Metrics Reviews, Michael Moss, Morten Stenshorne, Simon Hangl, Hiroki Nakagawa, Nikhil Nayunigari, Peter Beverloo, Sean Maher, Wang, Wei4, Peter Williamson, Ryan Sultanem, Shu Yang, Zhe Su, Charles Hager, Kevin Babbitt, Andrew Rayskiy, Kenneth Rohde Christiansen, Kentaro Hara, Khushal Sagar, Javier Fernandez, Stephen Chenney, Nico Weber, Hu, Ningxin, Hirokazu Honda, Avi Drissman, CJ DiMeglio, Nate Chapin, Sinan Sahin, Neil Coronado, Menard, Alexis, Zewen Li, Moe Adel, Tommy Li, Peter Collingbourne, (Julie)Jeongeun Kim, Thiabaud Engelbrecht, Yao Xiao, Raphael Kubo da Costa, Hongchan Choi, Jerome Jiang, Olga Gerchikov, Lin, Wanming, Heron Yang, AJITH KUMAR V, Sharon Yang, Fernando Fiori, Thorsten Kober, srirama chandra sekhar, Zijie He, Mark Schillaci, Dirk Schulze, AyeAye Python Dispatcher, kokoro, Himanshu Panwar, Mayur Patil, android-bu...@system.gserviceaccount.com, Chromium LUCI CQ, chromium...@chromium.org, blink-rev...@chromium.org, accessibility-a...@google.com, ddrone...@google.com, webauthn...@chromium.org, ashleynewson+watch...@chromium.org, crisrael+...@google.com, josiah...@chromium.org, xlythe+wa...@google.com, yhanad...@chromium.org, nicolas...@chromium.org, network-ser...@chromium.org, osaul+aut...@google.com, cros-ed...@google.com, halliwe...@chromium.org, droger+w...@chromium.org, mac-r...@chromium.org, meilian...@chromium.org, headless...@chromium.org, kuragin+web-ap...@chromium.org, blink-rev...@chromium.org, yigu+...@chromium.org, jackshira+w...@google.com, mlcui+watch-os-s...@google.com, marq+...@chromium.org, nikhilcn+wat...@google.com, weiluanw...@google.com, bmcquad...@chromium.org, glazuno...@chromium.org, kyungjunle...@google.com, blink-re...@chromium.org, enne...@chromium.org, nektar...@chromium.org, andysjl...@chromium.org, core-web-vita...@chromium.org, chrome-gr...@chromium.org, trewin...@google.com, dtapuska+...@chromium.org, wfh+...@chromuium.org, crisrael+wa...@google.com, dennyh...@google.com, xiaohui...@chromium.org, chikamu...@chromium.org, dtapuska+ch...@chromium.org, michaelcheco+wa...@google.com, keithle...@chromium.org, fenced-fra...@chromium.org, odejesu...@chromium.org, japhet+...@chromium.org, chromeos-gfx-...@google.com, sky+...@chromium.org, yhanada+...@chromium.org, fdoray...@chromium.org, crisrael+w...@google.com, gogeral...@chromium.org, jasonrhee+w...@google.com, danakj...@chromium.org, dmurph+wa...@chromium.org, hansberry+wat...@chromium.org, hanxi...@chromium.org, jackshira+wat...@google.com, mgiuca...@chromium.org, mfoltz+wa...@chromium.org, devtools-re...@chromium.org, lighthouse-eng-extern...@google.com, yuzo+...@chromium.org, ios-actor...@google.com, mfoltz+wa...@chromium.org, blink-revie...@chromium.org, creis...@chromium.org, loading-rev...@chromium.org, tranbaod...@chromium.org, jiajunz+wa...@google.com, bling-ai-foundatio...@google.com, blink-reviews-p...@chromium.org, bnc+...@chromium.org, siashah+au...@chromium.org, rmcelra...@chromium.org, webap...@microsoft.com, jbroma...@chromium.org, bling-alchemy-eng+...@google.com, jackshira+wat...@google.com, speed-metr...@chromium.org, caitkp...@chromium.org, schedule...@chromium.org, fuchsia...@chromium.org, ortuno...@chromium.org, speed-metrics...@chromium.org, yuezhang...@chromium.org, apavlo...@chromium.org, jonmann+wa...@chromium.org, erickun...@chromium.org, khorimoto+wa...@chromium.org, jasonrobe...@google.com, hsuregan+wat...@chromium.org, xiaochen...@chromium.org, borealis-re...@google.com, tommyw+w...@chromium.org, philli...@chromium.org, aji...@samsung.com, cblume...@chromium.org, stevenjb+wa...@chromium.org, yfriedm...@chromium.org, phshah...@chromium.org, pdf-r...@chromium.org, mdjone...@chromium.org, johnche...@chromium.org, cbe-cep-eng...@google.com, joeantonetti+wa...@google.com, chlily...@chromium.org, akingsb+wat...@google.com, jimmyxgong+wat...@chromium.org, ricea...@chromium.org, hiroshig...@chromium.org, print-revi...@chromium.org, hansenmichael...@google.com, dmurph+wat...@chromium.org, blink-rev...@chromium.org, vasilii+watchlis...@chromium.org, peter+watch...@chromium.org, scheduler-...@chromium.org, blink-revi...@chromium.org, wfh+...@chromium.org, jbauma...@chromium.org, knollr+wat...@chromium.org, ffred...@chromium.org, loading-rev...@chromium.org, gab+...@chromium.org, wnwen...@chromium.org, alandin...@chromium.org, cros-enterpris...@chromium.org, jackshira+w...@google.com, crisrael+wa...@google.com, mtomas...@chromium.org, francisjp...@google.com, ios-rev...@chromium.org, telemetr...@chromium.org, chromiumme...@microsoft.com, katie...@chromium.org, mattsimm...@chromium.org, android-web...@chromium.org, dullweb...@chromium.org, eric.c...@apple.com, hais+wat...@google.com, peilinwa...@google.com, prerenderi...@chromium.org, lizeb+watch...@chromium.org, croissant-...@chromium.org, yhanada+...@chromium.org, hirokisa...@chromium.org, blink-re...@chromium.org, translat...@chromium.org, ramyagopa...@google.com, gavinp...@chromium.org, pkotwic...@chromium.org, blink-revi...@chromium.org, khorimoto+w...@chromium.org, cros-essential...@chromium.org, glider...@chromium.org, jackshira+wa...@google.com, chili...@chromium.org, arthursonzog...@chromium.org, mattreyno...@chromium.org, omnibox-...@chromium.org, csharris...@chromium.org, dtraino...@chromium.org, shuche...@chromium.org, bhartmire+w...@google.com, shimazu+se...@chromium.org, kinuko+ser...@chromium.org, armalhotra+a...@google.com, chrome-regionalc...@google.com, dtseng+c...@chromium.org, twelling...@chromium.org, joeantonetti+...@google.com, chadduffin+w...@chromium.org, jshin...@chromium.org, jonmann+wat...@chromium.org, subresource-f...@chromium.org, kinuko+...@chromium.org, ntp-dev...@chromium.org, chromeos-ca...@google.com, csharrison+...@chromium.org, inca-eng...@google.com, feature-me...@chromium.org, jessemcke...@google.com, penghuan...@chromium.org, tmartino+tran...@chromium.org, media-cro...@chromium.org, rsleev...@chromium.org, chromotin...@chromium.org, aixba+wat...@chromium.org, loading...@chromium.org, rkgibso...@chromium.org, roagarw...@chromium.org, chasej...@chromium.org, gavin...@chromium.org, ukai+...@chromium.org, chromium-a...@chromium.org, hsuregan+wa...@chromium.org, webapks-...@chromium.org, pdr+svgw...@chromium.org, stanfie...@google.com, donnd...@chromium.org, xinghui...@chromium.org, jbrom...@chromium.org, ajayramamurth...@google.com, chromium-...@engflow.com, npm+...@chromium.org, sloboda...@chromium.org, lucasrada...@google.com, jackshira+w...@google.com, blink-re...@chromium.org, silv...@chromium.org, mek+w...@chromium.org, crostin...@chromium.org, eme-r...@chromium.org, phoglun...@chromium.org, shimazu...@chromium.org, fgal...@chromium.org, hansberry+wa...@chromium.org, hidehik...@chromium.org, tote-eng...@google.com, ajayramamurthy...@google.com, kenjibah...@chromium.org, jackshira+wa...@google.com, eic+...@google.com, wangdanny+fe...@google.com, kinuko...@chromium.org, browser-comp...@chromium.org, pushi+wa...@google.com, pushi+watc...@google.com, chromeos-kio...@google.com, ajwong...@chromium.org, emircan+watch...@chromium.org, derinel+wat...@google.com, loyso...@chromium.org, mfoltz+wa...@chromium.org, nwoked...@chromium.org, dom+...@chromium.org, polard...@google.com, shgar+aut...@google.com, julietlevesque...@google.com, dtseng...@chromium.org, lize...@chromium.org, dmurph+watch...@chromium.org, mkwst+w...@chromium.org, crost...@chromium.org, tburkar...@chromium.org, marinacio...@chromium.org, dmurph+watch...@chromium.org, horo+...@chromium.org, jiajunz+wat...@google.com, gavin...@chromium.org, mercer...@google.com, jophba...@chromium.org, ajayramamurthy+w...@google.com, chrome-intelligence-te...@google.com, ananyasee...@google.com, blink-work...@chromium.org, navigation...@chromium.org, siyua+aut...@chromium.org, stluon...@chromium.org, feature-v...@chromium.org, rsesek...@chromium.org, video-networking...@google.com, lwinston+watc...@google.com, dibyapal+wa...@chromium.org, lens-chrome...@google.com, jonmann+w...@chromium.org, khmel...@chromium.org, cwp-review...@google.com, iclella...@chromium.org, nona+...@chromium.org, petewi...@chromium.org, zol...@webkit.org, chfreme...@chromium.org, aashna...@google.com, vinnypersky+...@google.com, dmurph+watc...@chromium.org, byronle...@chromium.org, yusufo...@chromium.org, asumane...@google.com, ckitaga...@chromium.org, anastas...@google.com, michaelchec...@google.com, nickdiego+wa...@igalia.com, ender...@chromium.org, hansberry+w...@chromium.org, kouhe...@chromium.org, aleventh...@chromium.org, pasko...@chromium.org, dominicc+...@chromium.org, nyquis...@chromium.org, print-rev...@chromium.org, fserb...@chromium.org, jatapiaro+wat...@google.com, iwells...@chromium.org, msrame...@chromium.org, antoniosarto...@chromium.org, gcasto+w...@chromium.org, rginda...@chromium.org, lizeb...@chromium.org, shannc...@chromium.org, media-wi...@chromium.org, xiangdongkong+...@google.com, dmurph+watchin...@chromium.org, mickeybu...@chromium.org, chrome-intell...@chromium.org, mcasas+med...@chromium.org, menghua...@google.com, ajayramamurth...@google.com, yongshun+...@google.com, tgupta...@chromium.org, pmonett...@chromium.org, thegreenf...@chromium.org, ydago...@chromium.org, extension...@chromium.org, moqati-team+chr...@google.com, dfried...@chromium.org, fgorsk...@chromium.org, blink-revi...@chromium.org, edgesto...@microsoft.com, hansberry+wa...@chromium.org, language...@chromium.org, ios-r...@chromium.org, cros-setti...@google.com, arc-review...@google.com, davidj...@chromium.org, ajayramamurt...@google.com, ashleynewson+watch-...@chromium.org, eugeni...@chromium.org, lingqi...@chromium.org, christia...@chromium.org, martijn...@martijnc.be, torne...@chromium.org, pushi+wat...@google.com, mar...@chromium.org, yhanada...@chromium.org, gavinp...@chromium.org, dmblac...@google.com, chrome-tab-group-en...@google.com, kouhei...@chromium.org, vaapi-...@chromium.org, oilpan-rev...@chromium.org, core-timi...@chromium.org, ozone-...@chromium.org, toshikikikuch...@chromium.org, kouhe...@chromium.org, niharm...@google.com, cros-print...@google.com, max+watc...@igalia.com, wychen...@chromium.org, geoffla...@chromium.org, tracing...@chromium.org, zackha...@chromium.org, dewitt...@chromium.org, blink-revie...@chromium.org, longbowei+watc...@google.com, michaelcheco+...@google.com, asvitkine...@chromium.org, alexmo...@chromium.org, jmedle...@chromium.org, gl...@chromium.org, ayman...@chromium.org, gangwu...@chromium.org, spang...@chromium.org, scheduler...@chromium.org, bartek...@chromium.org, olka+...@chromium.org, suetfei+wa...@google.com, rhalava...@chromium.org, cc-...@chromium.org, tbarzi...@chromium.org, tluk+...@chromium.org, shend...@chromium.org, steimel+...@chromium.org, abigailbk...@google.com, longbowei+fe...@google.com, yyhyyh+fee...@google.com, ejcaruso+wa...@chromium.org, ashleydp+fe...@google.com, harringt...@chromium.org, jimmyxgong+w...@chromium.org, estali...@chromium.org, jackshira+wa...@google.com, jimmyxgong+watch...@chromium.org, cros-system-ui-prod...@google.com, ios-web-view...@google.com, dmurph+watchi...@chromium.org, mpdento...@chromium.org, ajayramamurthy...@google.com, oshima...@chromium.org, jeffreycohen+watc...@chromium.org, ios-revie...@chromium.org, cros-report...@google.com, jackshira+...@google.com, chungshe...@google.com, chadduffin+wa...@chromium.org, dclasson+w...@google.com, djacob...@chromium.org, roblia...@chromium.org, hansberry+wa...@chromium.org, rrsilva+wat...@google.com, jdeblas...@chromium.org, kinuko...@chromium.org, jonmann+watc...@chromium.org, dkrahn...@chromium.org, blink-rev...@chromium.org, filesapp...@chromium.org, penghu...@chromium.org, dmurph+watchi...@chromium.org, devtools...@chromium.org, loading-re...@chromium.org, hashimo...@chromium.org, titoua...@chromium.org, servicewor...@chromium.org, permissio...@chromium.org, web-schedulin...@chromium.org, agriev...@chromium.org, dcheng+c...@chromium.org, performance-m...@chromium.org, jz...@chromium.org, blink-re...@chromium.org, fmalit...@chromium.org, security-...@chromium.org, jorgel...@chromium.org, vakh+safe_br...@chromium.org, crmulli...@chromium.org, drott+bl...@chromium.org, hansberry+w...@chromium.org, asvitki...@chromium.org, jdonnel...@chromium.org, dmurph+watching...@chromium.org, zelin+watch-we...@chromium.org, srahim...@chromium.org, blink-...@chromium.org, blink-revie...@chromium.org, net-r...@chromium.org, storage...@chromium.org
                Attention needed from Adam Rice, Himanshu Panwar and Rakina Zata Amni

                Jatin Mittal added 1 comment

                Patchset-level comments
                Mike Taylor . resolved

                I just noticed there's 500 people in CC? That doesn't seem right... did an agent do that?

                Jatin Mittal

                Yes, Mike. That happened during a rebase. I noticed it afterward and tried to clean it up, but I couldn't find an option to remove all of the CCs at once.
                I'll take extra care going forward to ensure it doesn't happen again.

                Open in Gerrit

                Related details

                Attention is currently required from:
                • Adam Rice
                • Himanshu Panwar
                • Rakina Zata Amni
                Submit Requirements:
                  • requirement satisfiedCode-Coverage
                  • requirement is not satisfiedCode-Owners
                  • requirement is not satisfiedCode-Review
                  • requirement is not satisfiedReview-Enforcement
                  Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
                  Gerrit-MessageType: comment
                  Gerrit-Attention: Rakina Zata Amni <rak...@chromium.org>
                  Gerrit-Comment-Date: Fri, 26 Jun 2026 13:11:54 +0000
                  Gerrit-HasComments: Yes
                  Gerrit-Has-Labels: No
                  Comment-In-Reply-To: Mike Taylor <mike...@chromium.org>
                  satisfied_requirement
                  unsatisfied_requirement
                  open
                  diffy

                  Adam Rice (Gerrit)

                  unread,
                  Jun 26, 2026, 9:42:06 AM (yesterday) Jun 26
                  to Jatin Mittal, Mike Taylor, Rakina Zata Amni, Christian Biesinger, Urvang Joshi, Kevin McNee, Per Åhgren, Reid Kleckner, Ale Bzk, Fredrik Söderquist, Lei Zhang, Kenneth R Christiansen, Enterprise Policy Reviews, Ian Vollick, Jiewei Qian, Rijubrata Bhaumik, Mirko Bonadei, Daniel Cheng, Linyu He, Xida Chen, Ilya Biryukov, Josh Karlin, Anurag Simgeker, Sadrul Chowdhury, Hans Wennborg, James Maclean, Mangesh Ghiware, Sam Zackrisson, Mandy, Arnaud, Chromium Metrics Reviews, Michael Moss, Morten Stenshorne, Simon Hangl, Hiroki Nakagawa, Nikhil Nayunigari, Peter Beverloo, Sean Maher, Wang, Wei4, Peter Williamson, Ryan Sultanem, Shu Yang, Zhe Su, Charles Hager, Kevin Babbitt, Andrew Rayskiy, Kenneth Rohde Christiansen, Kentaro Hara, Khushal Sagar, Javier Fernandez, Stephen Chenney, Nico Weber, Hu, Ningxin, Hirokazu Honda, Avi Drissman, CJ DiMeglio, Nate Chapin, Sinan Sahin, Neil Coronado, Menard, Alexis, Zewen Li, Moe Adel, Tommy Li, Peter Collingbourne, (Julie)Jeongeun Kim, Thiabaud Engelbrecht, Yao Xiao, Raphael Kubo da Costa, Hongchan Choi, Jerome Jiang, Olga Gerchikov, Lin, Wanming, Heron Yang, AJITH KUMAR V, Sharon Yang, Fernando Fiori, Thorsten Kober, srirama chandra sekhar, Zijie He, Mark Schillaci, Dirk Schulze, AyeAye Python Dispatcher, kokoro, Himanshu Panwar, Mayur Patil, android-bu...@system.gserviceaccount.com, Chromium LUCI CQ, chromium...@chromium.org, blink-rev...@chromium.org, accessibility-a...@google.com, ddrone...@google.com, webauthn...@chromium.org, ashleynewson+watch...@chromium.org, crisrael+...@google.com, josiah...@chromium.org, xlythe+wa...@google.com, yhanad...@chromium.org, nicolas...@chromium.org, network-ser...@chromium.org, osaul+aut...@google.com, cros-ed...@google.com, halliwe...@chromium.org, droger+w...@chromium.org, mac-r...@chromium.org, meilian...@chromium.org, headless...@chromium.org, kuragin+web-ap...@chromium.org, blink-rev...@chromium.org, yigu+...@chromium.org, jackshira+w...@google.com, mlcui+watch-os-s...@google.com, marq+...@chromium.org, nikhilcn+wat...@google.com, weiluanw...@google.com, bmcquad...@chromium.org, glazuno...@chromium.org, kyungjunle...@google.com, blink-re...@chromium.org, enne...@chromium.org, nektar...@chromium.org, andysjl...@chromium.org, core-web-vita...@chromium.org, chrome-gr...@chromium.org, trewin...@google.com, dtapuska+...@chromium.org, wfh+...@chromuium.org, crisrael+wa...@google.com, dennyh...@google.com, xiaohui...@chromium.org, chikamu...@chromium.org, dtapuska+ch...@chromium.org, michaelcheco+wa...@google.com, keithle...@chromium.org, fenced-fra...@chromium.org, odejesu...@chromium.org, japhet+...@chromium.org, chromeos-gfx-...@google.com, sky+...@chromium.org, yhanada+...@chromium.org, fdoray...@chromium.org, crisrael+w...@google.com, gogeral...@chromium.org, jasonrhee+w...@google.com, danakj...@chromium.org, dmurph+wa...@chromium.org, hansberry+wat...@chromium.org, hanxi...@chromium.org, jackshira+wat...@google.com, mgiuca...@chromium.org, mfoltz+wa...@chromium.org, devtools-re...@chromium.org, lighthouse-eng-extern...@google.com, yuzo+...@chromium.org, ios-actor...@google.com, mfoltz+wa...@chromium.org, blink-revie...@chromium.org, creis...@chromium.org, loading-rev...@chromium.org, tranbaod...@chromium.org, jiajunz+wa...@google.com, bling-ai-foundatio...@google.com, blink-reviews-p...@chromium.org, bnc+...@chromium.org, siashah+au...@chromium.org, rmcelra...@chromium.org, webap...@microsoft.com, jbroma...@chromium.org, bling-alchemy-eng+...@google.com, jackshira+wat...@google.com, speed-metr...@chromium.org, caitkp...@chromium.org, schedule...@chromium.org, fuchsia...@chromium.org, ortuno...@chromium.org, speed-metrics...@chromium.org, yuezhang...@chromium.org, apavlo...@chromium.org, jonmann+wa...@chromium.org, erickun...@chromium.org, khorimoto+wa...@chromium.org, jasonrobe...@google.com, hsuregan+wat...@chromium.org, xiaochen...@chromium.org, borealis-re...@google.com, tommyw+w...@chromium.org, philli...@chromium.org, aji...@samsung.com, cblume...@chromium.org, stevenjb+wa...@chromium.org, yfriedm...@chromium.org, phshah...@chromium.org, pdf-r...@chromium.org, mdjone...@chromium.org, johnche...@chromium.org, cbe-cep-eng...@google.com, joeantonetti+wa...@google.com, chlily...@chromium.org, akingsb+wat...@google.com, jimmyxgong+wat...@chromium.org, ricea...@chromium.org, hiroshig...@chromium.org, print-revi...@chromium.org, hansenmichael...@google.com, dmurph+wat...@chromium.org, blink-rev...@chromium.org, vasilii+watchlis...@chromium.org, peter+watch...@chromium.org, scheduler-...@chromium.org, blink-revi...@chromium.org, wfh+...@chromium.org, jbauma...@chromium.org, knollr+wat...@chromium.org, ffred...@chromium.org, loading-rev...@chromium.org, gab+...@chromium.org, wnwen...@chromium.org, alandin...@chromium.org, cros-enterpris...@chromium.org, jackshira+w...@google.com, crisrael+wa...@google.com, mtomas...@chromium.org, francisjp...@google.com, ios-rev...@chromium.org, telemetr...@chromium.org, chromiumme...@microsoft.com, katie...@chromium.org, mattsimm...@chromium.org, android-web...@chromium.org, dullweb...@chromium.org, eric.c...@apple.com, hais+wat...@google.com, peilinwa...@google.com, prerenderi...@chromium.org, lizeb+watch...@chromium.org, croissant-...@chromium.org, yhanada+...@chromium.org, hirokisa...@chromium.org, blink-re...@chromium.org, translat...@chromium.org, ramyagopa...@google.com, gavinp...@chromium.org, pkotwic...@chromium.org, blink-revi...@chromium.org, khorimoto+w...@chromium.org, cros-essential...@chromium.org, glider...@chromium.org, jackshira+wa...@google.com, chili...@chromium.org, arthursonzog...@chromium.org, mattreyno...@chromium.org, omnibox-...@chromium.org, csharris...@chromium.org, dtraino...@chromium.org, shuche...@chromium.org, bhartmire+w...@google.com, shimazu+se...@chromium.org, kinuko+ser...@chromium.org, armalhotra+a...@google.com, chrome-regionalc...@google.com, dtseng+c...@chromium.org, twelling...@chromium.org, joeantonetti+...@google.com, chadduffin+w...@chromium.org, jshin...@chromium.org, jonmann+wat...@chromium.org, subresource-f...@chromium.org, kinuko+...@chromium.org, ntp-dev...@chromium.org, chromeos-ca...@google.com, csharrison+...@chromium.org, inca-eng...@google.com, feature-me...@chromium.org, jessemcke...@google.com, penghuan...@chromium.org, tmartino+tran...@chromium.org, media-cro...@chromium.org, rsleev...@chromium.org, chromotin...@chromium.org, aixba+wat...@chromium.org, loading...@chromium.org, rkgibso...@chromium.org, roagarw...@chromium.org, chasej...@chromium.org, gavin...@chromium.org, ukai+...@chromium.org, chromium-a...@chromium.org, hsuregan+wa...@chromium.org, webapks-...@chromium.org, pdr+svgw...@chromium.org, stanfie...@google.com, donnd...@chromium.org, xinghui...@chromium.org, jbrom...@chromium.org, ajayramamurth...@google.com, chromium-...@engflow.com, npm+...@chromium.org, sloboda...@chromium.org, lucasrada...@google.com, jackshira+w...@google.com, blink-re...@chromium.org, silv...@chromium.org, mek+w...@chromium.org, crostin...@chromium.org, eme-r...@chromium.org, phoglun...@chromium.org, shimazu...@chromium.org, fgal...@chromium.org, hansberry+wa...@chromium.org, hidehik...@chromium.org, tote-eng...@google.com, ajayramamurthy...@google.com, kenjibah...@chromium.org, jackshira+wa...@google.com, eic+...@google.com, wangdanny+fe...@google.com, kinuko...@chromium.org, browser-comp...@chromium.org, pushi+wa...@google.com, pushi+watc...@google.com, chromeos-kio...@google.com, ajwong...@chromium.org, emircan+watch...@chromium.org, derinel+wat...@google.com, loyso...@chromium.org, mfoltz+wa...@chromium.org, nwoked...@chromium.org, dom+...@chromium.org, polard...@google.com, shgar+aut...@google.com, julietlevesque...@google.com, dtseng...@chromium.org, lize...@chromium.org, dmurph+watch...@chromium.org, mkwst+w...@chromium.org, crost...@chromium.org, tburkar...@chromium.org, marinacio...@chromium.org, dmurph+watch...@chromium.org, horo+...@chromium.org, jiajunz+wat...@google.com, gavin...@chromium.org, mercer...@google.com, jophba...@chromium.org, ajayramamurthy+w...@google.com, chrome-intelligence-te...@google.com, ananyasee...@google.com, blink-work...@chromium.org, navigation...@chromium.org, siyua+aut...@chromium.org, stluon...@chromium.org, feature-v...@chromium.org, rsesek...@chromium.org, video-networking...@google.com, lwinston+watc...@google.com, dibyapal+wa...@chromium.org, lens-chrome...@google.com, jonmann+w...@chromium.org, khmel...@chromium.org, cwp-review...@google.com, iclella...@chromium.org, nona+...@chromium.org, petewi...@chromium.org, zol...@webkit.org, chfreme...@chromium.org, aashna...@google.com, vinnypersky+...@google.com, dmurph+watc...@chromium.org, byronle...@chromium.org, yusufo...@chromium.org, asumane...@google.com, ckitaga...@chromium.org, anastas...@google.com, michaelchec...@google.com, nickdiego+wa...@igalia.com, ender...@chromium.org, hansberry+w...@chromium.org, kouhe...@chromium.org, aleventh...@chromium.org, pasko...@chromium.org, dominicc+...@chromium.org, nyquis...@chromium.org, print-rev...@chromium.org, fserb...@chromium.org, jatapiaro+wat...@google.com, iwells...@chromium.org, msrame...@chromium.org, antoniosarto...@chromium.org, gcasto+w...@chromium.org, rginda...@chromium.org, lizeb...@chromium.org, shannc...@chromium.org, media-wi...@chromium.org, xiangdongkong+...@google.com, dmurph+watchin...@chromium.org, mickeybu...@chromium.org, chrome-intell...@chromium.org, mcasas+med...@chromium.org, menghua...@google.com, ajayramamurth...@google.com, yongshun+...@google.com, tgupta...@chromium.org, pmonett...@chromium.org, thegreenf...@chromium.org, ydago...@chromium.org, extension...@chromium.org, moqati-team+chr...@google.com, dfried...@chromium.org, fgorsk...@chromium.org, blink-revi...@chromium.org, edgesto...@microsoft.com, hansberry+wa...@chromium.org, language...@chromium.org, ios-r...@chromium.org, cros-setti...@google.com, arc-review...@google.com, davidj...@chromium.org, ajayramamurt...@google.com, ashleynewson+watch-...@chromium.org, eugeni...@chromium.org, lingqi...@chromium.org, christia...@chromium.org, martijn...@martijnc.be, torne...@chromium.org, pushi+wat...@google.com, mar...@chromium.org, yhanada...@chromium.org, gavinp...@chromium.org, dmblac...@google.com, chrome-tab-group-en...@google.com, kouhei...@chromium.org, vaapi-...@chromium.org, oilpan-rev...@chromium.org, core-timi...@chromium.org, ozone-...@chromium.org, toshikikikuch...@chromium.org, kouhe...@chromium.org, niharm...@google.com, cros-print...@google.com, max+watc...@igalia.com, wychen...@chromium.org, geoffla...@chromium.org, tracing...@chromium.org, zackha...@chromium.org, dewitt...@chromium.org, blink-revie...@chromium.org, longbowei+watc...@google.com, michaelcheco+...@google.com, asvitkine...@chromium.org, alexmo...@chromium.org, jmedle...@chromium.org, gl...@chromium.org, ayman...@chromium.org, gangwu...@chromium.org, spang...@chromium.org, scheduler...@chromium.org, bartek...@chromium.org, olka+...@chromium.org, suetfei+wa...@google.com, rhalava...@chromium.org, cc-...@chromium.org, tbarzi...@chromium.org, tluk+...@chromium.org, shend...@chromium.org, steimel+...@chromium.org, abigailbk...@google.com, longbowei+fe...@google.com, yyhyyh+fee...@google.com, ejcaruso+wa...@chromium.org, ashleydp+fe...@google.com, harringt...@chromium.org, jimmyxgong+w...@chromium.org, estali...@chromium.org, jackshira+wa...@google.com, jimmyxgong+watch...@chromium.org, cros-system-ui-prod...@google.com, ios-web-view...@google.com, dmurph+watchi...@chromium.org, mpdento...@chromium.org, ajayramamurthy...@google.com, oshima...@chromium.org, jeffreycohen+watc...@chromium.org, ios-revie...@chromium.org, cros-report...@google.com, jackshira+...@google.com, chungshe...@google.com, chadduffin+wa...@chromium.org, dclasson+w...@google.com, djacob...@chromium.org, roblia...@chromium.org, hansberry+wa...@chromium.org, rrsilva+wat...@google.com, jdeblas...@chromium.org, kinuko...@chromium.org, jonmann+watc...@chromium.org, dkrahn...@chromium.org, blink-rev...@chromium.org, filesapp...@chromium.org, penghu...@chromium.org, dmurph+watchi...@chromium.org, devtools...@chromium.org, loading-re...@chromium.org, hashimo...@chromium.org, titoua...@chromium.org, servicewor...@chromium.org, permissio...@chromium.org, web-schedulin...@chromium.org, agriev...@chromium.org, dcheng+c...@chromium.org, performance-m...@chromium.org, jz...@chromium.org, blink-re...@chromium.org, fmalit...@chromium.org, security-...@chromium.org, jorgel...@chromium.org, vakh+safe_br...@chromium.org, crmulli...@chromium.org, drott+bl...@chromium.org, hansberry+w...@chromium.org, asvitki...@chromium.org, jdonnel...@chromium.org, dmurph+watching...@chromium.org, zelin+watch-we...@chromium.org, srahim...@chromium.org, blink-...@chromium.org, blink-revie...@chromium.org, net-r...@chromium.org, storage...@chromium.org
                  Attention needed from Himanshu Panwar, Jatin Mittal and Rakina Zata Amni

                  Adam Rice added 1 comment

                  File third_party/blink/renderer/platform/runtime_enabled_features.json5
                  Line 930, Patchset 10 (Latest): // Kill switch for Fetch-compliant Range header validation on blob: URLs.
                  Adam Rice . unresolved

                  Sorry, I mistakenly assumed the cost was in Blink. Since the feature is not in Blink, it is wasteful (and an encapsulation violation) to define it here, and you should define i in storage/browser/blob/features.h instead.

                  Open in Gerrit

                  Related details

                  Attention is currently required from:
                  • Himanshu Panwar
                  • Jatin Mittal
                  • Rakina Zata Amni
                  Submit Requirements:
                    • requirement satisfiedCode-Coverage
                    • requirement is not satisfiedCode-Owners
                    • requirement is not satisfiedCode-Review
                    • requirement is not satisfiedNo-Unresolved-Comments
                    Gerrit-Attention: Jatin Mittal <jatin...@microsoft.com>
                    Gerrit-Attention: Rakina Zata Amni <rak...@chromium.org>
                    Gerrit-Comment-Date: Fri, 26 Jun 2026 13:41:27 +0000
                    Gerrit-HasComments: Yes
                    Gerrit-Has-Labels: No
                    satisfied_requirement
                    unsatisfied_requirement
                    open
                    diffy

                    Mike Taylor (Gerrit)

                    unread,
                    Jun 26, 2026, 10:03:02 AM (yesterday) Jun 26
                    to Jatin Mittal, Adam Rice, Rakina Zata Amni, Christian Biesinger, Urvang Joshi, Kevin McNee, Per Åhgren, Reid Kleckner, Ale Bzk, Fredrik Söderquist, Lei Zhang, Kenneth R Christiansen, Enterprise Policy Reviews, Ian Vollick, Jiewei Qian, Rijubrata Bhaumik, Mirko Bonadei, Daniel Cheng, Linyu He, Xida Chen, Ilya Biryukov, Josh Karlin, Anurag Simgeker, Sadrul Chowdhury, Hans Wennborg, James Maclean, Mangesh Ghiware, Sam Zackrisson, Mandy, Arnaud, Chromium Metrics Reviews, Michael Moss, Morten Stenshorne, Simon Hangl, Hiroki Nakagawa, Nikhil Nayunigari, Peter Beverloo, Sean Maher, Wang, Wei4, Peter Williamson, Ryan Sultanem, Shu Yang, Zhe Su, Charles Hager, Kevin Babbitt, Andrew Rayskiy, Kenneth Rohde Christiansen, Kentaro Hara, Khushal Sagar, Javier Fernandez, Stephen Chenney, Nico Weber, Hu, Ningxin, Hirokazu Honda, Avi Drissman, CJ DiMeglio, Nate Chapin, Sinan Sahin, Neil Coronado, Menard, Alexis, Zewen Li, Moe Adel, Tommy Li, Peter Collingbourne, (Julie)Jeongeun Kim, Thiabaud Engelbrecht, Yao Xiao, Raphael Kubo da Costa, Hongchan Choi, Jerome Jiang, Olga Gerchikov, Lin, Wanming, Heron Yang, AJITH KUMAR V, Sharon Yang, Fernando Fiori, Thorsten Kober, srirama chandra sekhar, Zijie He, Mark Schillaci, Dirk Schulze, AyeAye Python Dispatcher, kokoro, Himanshu Panwar, Mayur Patil, android-bu...@system.gserviceaccount.com, Chromium LUCI CQ, chromium...@chromium.org, blink-rev...@chromium.org, accessibility-a...@google.com, ddrone...@google.com, webauthn...@chromium.org, ashleynewson+watch...@chromium.org, crisrael+...@google.com, josiah...@chromium.org, xlythe+wa...@google.com, yhanad...@chromium.org, nicolas...@chromium.org, network-ser...@chromium.org, osaul+aut...@google.com, cros-ed...@google.com, halliwe...@chromium.org, droger+w...@chromium.org, mac-r...@chromium.org, meilian...@chromium.org, headless...@chromium.org, kuragin+web-ap...@chromium.org, blink-rev...@chromium.org, yigu+...@chromium.org, jackshira+w...@google.com, mlcui+watch-os-s...@google.com, marq+...@chromium.org, nikhilcn+wat...@google.com, weiluanw...@google.com, bmcquad...@chromium.org, glazuno...@chromium.org, kyungjunle...@google.com, blink-re...@chromium.org, enne...@chromium.org, nektar...@chromium.org, andysjl...@chromium.org, core-web-vita...@chromium.org, chrome-gr...@chromium.org, trewin...@google.com, dtapuska+...@chromium.org, wfh+...@chromuium.org, crisrael+wa...@google.com, dennyh...@google.com, xiaohui...@chromium.org, chikamu...@chromium.org, dtapuska+ch...@chromium.org, michaelcheco+wa...@google.com, keithle...@chromium.org, fenced-fra...@chromium.org, odejesu...@chromium.org, japhet+...@chromium.org, chromeos-gfx-...@google.com, sky+...@chromium.org, yhanada+...@chromium.org, fdoray...@chromium.org, crisrael+w...@google.com, gogeral...@chromium.org, jasonrhee+w...@google.com, danakj...@chromium.org, dmurph+wa...@chromium.org, hansberry+wat...@chromium.org, hanxi...@chromium.org, jackshira+wat...@google.com, mgiuca...@chromium.org, mfoltz+wa...@chromium.org, devtools-re...@chromium.org, lighthouse-eng-extern...@google.com, yuzo+...@chromium.org, ios-actor...@google.com, mfoltz+wa...@chromium.org, blink-revie...@chromium.org, creis...@chromium.org, loading-rev...@chromium.org, tranbaod...@chromium.org, jiajunz+wa...@google.com, bling-ai-foundatio...@google.com, blink-reviews-p...@chromium.org, bnc+...@chromium.org, siashah+au...@chromium.org, rmcelra...@chromium.org, webap...@microsoft.com, jbroma...@chromium.org, bling-alchemy-eng+...@google.com, jackshira+wat...@google.com, speed-metr...@chromium.org, caitkp...@chromium.org, schedule...@chromium.org, fuchsia...@chromium.org, ortuno...@chromium.org, speed-metrics...@chromium.org, yuezhang...@chromium.org, apavlo...@chromium.org, jonmann+wa...@chromium.org, erickun...@chromium.org, khorimoto+wa...@chromium.org, jasonrobe...@google.com, hsuregan+wat...@chromium.org, xiaochen...@chromium.org, borealis-re...@google.com, tommyw+w...@chromium.org, philli...@chromium.org, aji...@samsung.com, cblume...@chromium.org, stevenjb+wa...@chromium.org, yfriedm...@chromium.org, phshah...@chromium.org, pdf-r...@chromium.org, mdjone...@chromium.org, johnche...@chromium.org, cbe-cep-eng...@google.com, joeantonetti+wa...@google.com, chlily...@chromium.org, akingsb+wat...@google.com, jimmyxgong+wat...@chromium.org, ricea...@chromium.org, hiroshig...@chromium.org, print-revi...@chromium.org, hansenmichael...@google.com, dmurph+wat...@chromium.org, blink-rev...@chromium.org, vasilii+watchlis...@chromium.org, peter+watch...@chromium.org, scheduler-...@chromium.org, blink-revi...@chromium.org, wfh+...@chromium.org, jbauma...@chromium.org, knollr+wat...@chromium.org, ffred...@chromium.org, loading-rev...@chromium.org, gab+...@chromium.org, wnwen...@chromium.org, alandin...@chromium.org, cros-enterpris...@chromium.org, jackshira+w...@google.com, crisrael+wa...@google.com, mtomas...@chromium.org, francisjp...@google.com, ios-rev...@chromium.org, telemetr...@chromium.org, chromiumme...@microsoft.com, katie...@chromium.org, mattsimm...@chromium.org, android-web...@chromium.org, dullweb...@chromium.org, eric.c...@apple.com, hais+wat...@google.com, peilinwa...@google.com, prerenderi...@chromium.org, lizeb+watch...@chromium.org, croissant-...@chromium.org, yhanada+...@chromium.org, hirokisa...@chromium.org, blink-re...@chromium.org, translat...@chromium.org, ramyagopa...@google.com, gavinp...@chromium.org, pkotwic...@chromium.org, blink-revi...@chromium.org, khorimoto+w...@chromium.org, cros-essential...@chromium.org, glider...@chromium.org, jackshira+wa...@google.com, chili...@chromium.org, arthursonzog...@chromium.org, mattreyno...@chromium.org, omnibox-...@chromium.org, csharris...@chromium.org, dtraino...@chromium.org, shuche...@chromium.org, bhartmire+w...@google.com, shimazu+se...@chromium.org, kinuko+ser...@chromium.org, armalhotra+a...@google.com, chrome-regionalc...@google.com, dtseng+c...@chromium.org, twelling...@chromium.org, joeantonetti+...@google.com, chadduffin+w...@chromium.org, jshin...@chromium.org, jonmann+wat...@chromium.org, subresource-f...@chromium.org, kinuko+...@chromium.org, ntp-dev...@chromium.org, chromeos-ca...@google.com, csharrison+...@chromium.org, inca-eng...@google.com, feature-me...@chromium.org, jessemcke...@google.com, penghuan...@chromium.org, tmartino+tran...@chromium.org, media-cro...@chromium.org, rsleev...@chromium.org, chromotin...@chromium.org, aixba+wat...@chromium.org, loading...@chromium.org, rkgibso...@chromium.org, roagarw...@chromium.org, chasej...@chromium.org, gavin...@chromium.org, ukai+...@chromium.org, chromium-a...@chromium.org, hsuregan+wa...@chromium.org, webapks-...@chromium.org, pdr+svgw...@chromium.org, stanfie...@google.com, donnd...@chromium.org, xinghui...@chromium.org, jbrom...@chromium.org, ajayramamurth...@google.com, chromium-...@engflow.com, npm+...@chromium.org, sloboda...@chromium.org, lucasrada...@google.com, jackshira+w...@google.com, blink-re...@chromium.org, silv...@chromium.org, mek+w...@chromium.org, crostin...@chromium.org, eme-r...@chromium.org, phoglun...@chromium.org, shimazu...@chromium.org, fgal...@chromium.org, hansberry+wa...@chromium.org, hidehik...@chromium.org, tote-eng...@google.com, ajayramamurthy...@google.com, kenjibah...@chromium.org, jackshira+wa...@google.com, eic+...@google.com, wangdanny+fe...@google.com, kinuko...@chromium.org, browser-comp...@chromium.org, pushi+wa...@google.com, pushi+watc...@google.com, chromeos-kio...@google.com, ajwong...@chromium.org, emircan+watch...@chromium.org, derinel+wat...@google.com, loyso...@chromium.org, mfoltz+wa...@chromium.org, nwoked...@chromium.org, dom+...@chromium.org, polard...@google.com, shgar+aut...@google.com, julietlevesque...@google.com, dtseng...@chromium.org, lize...@chromium.org, dmurph+watch...@chromium.org, mkwst+w...@chromium.org, crost...@chromium.org, tburkar...@chromium.org, marinacio...@chromium.org, dmurph+watch...@chromium.org, horo+...@chromium.org, jiajunz+wat...@google.com, gavin...@chromium.org, mercer...@google.com, jophba...@chromium.org, ajayramamurthy+w...@google.com, chrome-intelligence-te...@google.com, ananyasee...@google.com, blink-work...@chromium.org, navigation...@chromium.org, siyua+aut...@chromium.org, stluon...@chromium.org, feature-v...@chromium.org, rsesek...@chromium.org, video-networking...@google.com, lwinston+watc...@google.com, dibyapal+wa...@chromium.org, lens-chrome...@google.com, jonmann+w...@chromium.org, khmel...@chromium.org, cwp-review...@google.com, iclella...@chromium.org, nona+...@chromium.org, petewi...@chromium.org, zol...@webkit.org, chfreme...@chromium.org, aashna...@google.com, vinnypersky+...@google.com, dmurph+watc...@chromium.org, byronle...@chromium.org, yusufo...@chromium.org, asumane...@google.com, ckitaga...@chromium.org, anastas...@google.com, michaelchec...@google.com, nickdiego+wa...@igalia.com, ender...@chromium.org, hansberry+w...@chromium.org, kouhe...@chromium.org, aleventh...@chromium.org, pasko...@chromium.org, dominicc+...@chromium.org, nyquis...@chromium.org, print-rev...@chromium.org, fserb...@chromium.org, jatapiaro+wat...@google.com, iwells...@chromium.org, msrame...@chromium.org, antoniosarto...@chromium.org, gcasto+w...@chromium.org, rginda...@chromium.org, lizeb...@chromium.org, shannc...@chromium.org, media-wi...@chromium.org, xiangdongkong+...@google.com, dmurph+watchin...@chromium.org, mickeybu...@chromium.org, chrome-intell...@chromium.org, mcasas+med...@chromium.org, menghua...@google.com, ajayramamurth...@google.com, yongshun+...@google.com, tgupta...@chromium.org, pmonett...@chromium.org, thegreenf...@chromium.org, ydago...@chromium.org, extension...@chromium.org, moqati-team+chr...@google.com, dfried...@chromium.org, fgorsk...@chromium.org, blink-revi...@chromium.org, edgesto...@microsoft.com, hansberry+wa...@chromium.org, language...@chromium.org, ios-r...@chromium.org, cros-setti...@google.com, arc-review...@google.com, davidj...@chromium.org, ajayramamurt...@google.com, ashleynewson+watch-...@chromium.org, eugeni...@chromium.org, lingqi...@chromium.org, christia...@chromium.org, martijn...@martijnc.be, torne...@chromium.org, pushi+wat...@google.com, mar...@chromium.org, yhanada...@chromium.org, gavinp...@chromium.org, dmblac...@google.com, chrome-tab-group-en...@google.com, kouhei...@chromium.org, vaapi-...@chromium.org, oilpan-rev...@chromium.org, core-timi...@chromium.org, ozone-...@chromium.org, toshikikikuch...@chromium.org, kouhe...@chromium.org, niharm...@google.com, cros-print...@google.com, max+watc...@igalia.com, wychen...@chromium.org, geoffla...@chromium.org, tracing...@chromium.org, zackha...@chromium.org, dewitt...@chromium.org, blink-revie...@chromium.org, longbowei+watc...@google.com, michaelcheco+...@google.com, asvitkine...@chromium.org, alexmo...@chromium.org, jmedle...@chromium.org, gl...@chromium.org, ayman...@chromium.org, gangwu...@chromium.org, spang...@chromium.org, scheduler...@chromium.org, bartek...@chromium.org, olka+...@chromium.org, suetfei+wa...@google.com, rhalava...@chromium.org, cc-...@chromium.org, tbarzi...@chromium.org, tluk+...@chromium.org, shend...@chromium.org, steimel+...@chromium.org, abigailbk...@google.com, longbowei+fe...@google.com, yyhyyh+fee...@google.com, ejcaruso+wa...@chromium.org, ashleydp+fe...@google.com, harringt...@chromium.org, jimmyxgong+w...@chromium.org, estali...@chromium.org, jackshira+wa...@google.com, jimmyxgong+watch...@chromium.org, cros-system-ui-prod...@google.com, ios-web-view...@google.com, dmurph+watchi...@chromium.org, mpdento...@chromium.org, ajayramamurthy...@google.com, oshima...@chromium.org, jeffreycohen+watc...@chromium.org, ios-revie...@chromium.org, cros-report...@google.com, jackshira+...@google.com, chungshe...@google.com, chadduffin+wa...@chromium.org, dclasson+w...@google.com, djacob...@chromium.org, roblia...@chromium.org, hansberry+wa...@chromium.org, rrsilva+wat...@google.com, jdeblas...@chromium.org, kinuko...@chromium.org, jonmann+watc...@chromium.org, dkrahn...@chromium.org, blink-rev...@chromium.org, filesapp...@chromium.org, penghu...@chromium.org, dmurph+watchi...@chromium.org, devtools...@chromium.org, loading-re...@chromium.org, hashimo...@chromium.org, titoua...@chromium.org, servicewor...@chromium.org, permissio...@chromium.org, web-schedulin...@chromium.org, agriev...@chromium.org, dcheng+c...@chromium.org, performance-m...@chromium.org, jz...@chromium.org, blink-re...@chromium.org, fmalit...@chromium.org, security-...@chromium.org, jorgel...@chromium.org, vakh+safe_br...@chromium.org, crmulli...@chromium.org, drott+bl...@chromium.org, hansberry+w...@chromium.org, asvitki...@chromium.org, jdonnel...@chromium.org, dmurph+watching...@chromium.org, zelin+watch-we...@chromium.org, srahim...@chromium.org, blink-...@chromium.org, blink-revie...@chromium.org, net-r...@chromium.org, storage...@chromium.org
                    Attention needed from Himanshu Panwar, Jatin Mittal and Rakina Zata Amni

                    Mike Taylor voted Code-Review+0

                    Code-Review+0
                    Gerrit-Comment-Date: Fri, 26 Jun 2026 14:02:20 +0000
                    Gerrit-HasComments: No
                    Gerrit-Has-Labels: Yes
                    satisfied_requirement
                    unsatisfied_requirement
                    open
                    diffy

                    Jatin Mittal (Gerrit)

                    unread,
                    Jun 26, 2026, 11:35:11 AM (yesterday) Jun 26
                    to Mike Taylor, Adam Rice, Rakina Zata Amni, Christian Biesinger, Urvang Joshi, Kevin McNee, Per Åhgren, Reid Kleckner, Ale Bzk, Fredrik Söderquist, Lei Zhang, Kenneth R Christiansen, Enterprise Policy Reviews, Ian Vollick, Jiewei Qian, Rijubrata Bhaumik, Mirko Bonadei, Daniel Cheng, Linyu He, Xida Chen, Ilya Biryukov, Josh Karlin, Anurag Simgeker, Sadrul Chowdhury, Hans Wennborg, James Maclean, Mangesh Ghiware, Sam Zackrisson, Mandy, Arnaud, Chromium Metrics Reviews, Michael Moss, Morten Stenshorne, Simon Hangl, Hiroki Nakagawa, Nikhil Nayunigari, Peter Beverloo, Wang, Wei4, Peter Williamson, Ryan Sultanem, Shu Yang, Zhe Su, Charles Hager, Kevin Babbitt, Andrew Rayskiy, Kenneth Rohde Christiansen, Kentaro Hara, Khushal Sagar, Javier Fernandez, Stephen Chenney, Nico Weber, Hu, Ningxin, Hirokazu Honda, Avi Drissman, CJ DiMeglio, Nate Chapin, Sinan Sahin, Neil Coronado, Menard, Alexis, Zewen Li, Moe Adel, Tommy Li, Peter Collingbourne, (Julie)Jeongeun Kim, Thiabaud Engelbrecht, Yao Xiao, Raphael Kubo da Costa, Hongchan Choi, Jerome Jiang, Olga Gerchikov, Lin, Wanming, Heron Yang, AJITH KUMAR V, Sharon Yang, Fernando Fiori, Thorsten Kober, srirama chandra sekhar, Zijie He, Mark Schillaci, Dirk Schulze, AyeAye Python Dispatcher, kokoro, Himanshu Panwar, Mayur Patil, android-bu...@system.gserviceaccount.com, Chromium LUCI CQ, chromium...@chromium.org, blink-rev...@chromium.org, accessibility-a...@google.com, ddrone...@google.com, webauthn...@chromium.org, ashleynewson+watch...@chromium.org, crisrael+...@google.com, josiah...@chromium.org, xlythe+wa...@google.com, yhanad...@chromium.org, nicolas...@chromium.org, network-ser...@chromium.org, osaul+aut...@google.com, cros-ed...@google.com, halliwe...@chromium.org, droger+w...@chromium.org, mac-r...@chromium.org, meilian...@chromium.org, headless...@chromium.org, kuragin+web-ap...@chromium.org, blink-rev...@chromium.org, yigu+...@chromium.org, jackshira+w...@google.com, mlcui+watch-os-s...@google.com, marq+...@chromium.org, nikhilcn+wat...@google.com, weiluanw...@google.com, bmcquad...@chromium.org, glazuno...@chromium.org, kyungjunle...@google.com, blink-re...@chromium.org, enne...@chromium.org, nektar...@chromium.org, andysjl...@chromium.org, core-web-vita...@chromium.org, chrome-gr...@chromium.org, trewin...@google.com, dtapuska+...@chromium.org, wfh+...@chromuium.org, crisrael+wa...@google.com, dennyh...@google.com, xiaohui...@chromium.org, chikamu...@chromium.org, dtapuska+ch...@chromium.org, michaelcheco+wa...@google.com, keithle...@chromium.org, fenced-fra...@chromium.org, odejesu...@chromium.org, japhet+...@chromium.org, chromeos-gfx-...@google.com, sky+...@chromium.org, yhanada+...@chromium.org, fdoray...@chromium.org, crisrael+w...@google.com, gogeral...@chromium.org, jasonrhee+w...@google.com, danakj...@chromium.org, dmurph+wa...@chromium.org, hansberry+wat...@chromium.org, hanxi...@chromium.org, jackshira+wat...@google.com, mgiuca...@chromium.org, mfoltz+wa...@chromium.org, devtools-re...@chromium.org, lighthouse-eng-extern...@google.com, yuzo+...@chromium.org, ios-actor...@google.com, mfoltz+wa...@chromium.org, blink-revie...@chromium.org, creis...@chromium.org, loading-rev...@chromium.org, tranbaod...@chromium.org, jiajunz+wa...@google.com, bling-ai-foundatio...@google.com, blink-reviews-p...@chromium.org, bnc+...@chromium.org, siashah+au...@chromium.org, rmcelra...@chromium.org, webap...@microsoft.com, jbroma...@chromium.org, bling-alchemy-eng+...@google.com, jackshira+wat...@google.com, speed-metr...@chromium.org, caitkp...@chromium.org, schedule...@chromium.org, fuchsia...@chromium.org, ortuno...@chromium.org, speed-metrics...@chromium.org, yuezhang...@chromium.org, apavlo...@chromium.org, jonmann+wa...@chromium.org, erickun...@chromium.org, khorimoto+wa...@chromium.org, jasonrobe...@google.com, hsuregan+wat...@chromium.org, xiaochen...@chromium.org, borealis-re...@google.com, tommyw+w...@chromium.org, philli...@chromium.org, aji...@samsung.com, cblume...@chromium.org, stevenjb+wa...@chromium.org, yfriedm...@chromium.org, phshah...@chromium.org, pdf-r...@chromium.org, mdjone...@chromium.org, johnche...@chromium.org, cbe-cep-eng...@google.com, joeantonetti+wa...@google.com, chlily...@chromium.org, akingsb+wat...@google.com, jimmyxgong+wat...@chromium.org, ricea...@chromium.org, hiroshig...@chromium.org, print-revi...@chromium.org, hansenmichael...@google.com, dmurph+wat...@chromium.org, blink-rev...@chromium.org, vasilii+watchlis...@chromium.org, peter+watch...@chromium.org, scheduler-...@chromium.org, blink-revi...@chromium.org, wfh+...@chromium.org, jbauma...@chromium.org, knollr+wat...@chromium.org, ffred...@chromium.org, loading-rev...@chromium.org, gab+...@chromium.org, wnwen...@chromium.org, alandin...@chromium.org, cros-enterpris...@chromium.org, jackshira+w...@google.com, crisrael+wa...@google.com, mtomas...@chromium.org, francisjp...@google.com, ios-rev...@chromium.org, telemetr...@chromium.org, chromiumme...@microsoft.com, katie...@chromium.org, mattsimm...@chromium.org, android-web...@chromium.org, dullweb...@chromium.org, eric.c...@apple.com, hais+wat...@google.com, peilinwa...@google.com, prerenderi...@chromium.org, lizeb+watch...@chromium.org, croissant-...@chromium.org, yhanada+...@chromium.org, hirokisa...@chromium.org, blink-re...@chromium.org, translat...@chromium.org, ramyagopa...@google.com, gavinp...@chromium.org, pkotwic...@chromium.org, blink-revi...@chromium.org, khorimoto+w...@chromium.org, cros-essential...@chromium.org, glider...@chromium.org, jackshira+wa...@google.com, chili...@chromium.org, arthursonzog...@chromium.org, mattreyno...@chromium.org, omnibox-...@chromium.org, csharris...@chromium.org, dtraino...@chromium.org, shuche...@chromium.org, bhartmire+w...@google.com, shimazu+se...@chromium.org, kinuko+ser...@chromium.org, armalhotra+a...@google.com, chrome-regionalc...@google.com, dtseng+c...@chromium.org, twelling...@chromium.org, joeantonetti+...@google.com, chadduffin+w...@chromium.org, jshin...@chromium.org, jonmann+wat...@chromium.org, subresource-f...@chromium.org, kinuko+...@chromium.org, ntp-dev...@chromium.org, chromeos-ca...@google.com, csharrison+...@chromium.org, inca-eng...@google.com, feature-me...@chromium.org, jessemcke...@google.com, penghuan...@chromium.org, tmartino+tran...@chromium.org, media-cro...@chromium.org, rsleev...@chromium.org, chromotin...@chromium.org, aixba+wat...@chromium.org, loading...@chromium.org, rkgibso...@chromium.org, roagarw...@chromium.org, chasej...@chromium.org, gavin...@chromium.org, ukai+...@chromium.org, chromium-a...@chromium.org, hsuregan+wa...@chromium.org, webapks-...@chromium.org, pdr+svgw...@chromium.org, stanfie...@google.com, donnd...@chromium.org, xinghui...@chromium.org, jbrom...@chromium.org, ajayramamurth...@google.com, chromium-...@engflow.com, npm+...@chromium.org, sloboda...@chromium.org, lucasrada...@google.com, jackshira+w...@google.com, blink-re...@chromium.org, silv...@chromium.org, mek+w...@chromium.org, crostin...@chromium.org, eme-r...@chromium.org, phoglun...@chromium.org, shimazu...@chromium.org, fgal...@chromium.org, hansberry+wa...@chromium.org, hidehik...@chromium.org, tote-eng...@google.com, ajayramamurthy...@google.com, kenjibah...@chromium.org, jackshira+wa...@google.com, eic+...@google.com, wangdanny+fe...@google.com, kinuko...@chromium.org, browser-comp...@chromium.org, pushi+wa...@google.com, pushi+watc...@google.com, chromeos-kio...@google.com, ajwong...@chromium.org, emircan+watch...@chromium.org, derinel+wat...@google.com, loyso...@chromium.org, mfoltz+wa...@chromium.org, nwoked...@chromium.org, dom+...@chromium.org, polard...@google.com, shgar+aut...@google.com, julietlevesque...@google.com, dtseng...@chromium.org, lize...@chromium.org, dmurph+watch...@chromium.org, mkwst+w...@chromium.org, crost...@chromium.org, tburkar...@chromium.org, marinacio...@chromium.org, dmurph+watch...@chromium.org, horo+...@chromium.org, jiajunz+wat...@google.com, gavin...@chromium.org, mercer...@google.com, jophba...@chromium.org, ajayramamurthy+w...@google.com, chrome-intelligence-te...@google.com, ananyasee...@google.com, blink-work...@chromium.org, navigation...@chromium.org, siyua+aut...@chromium.org, stluon...@chromium.org, feature-v...@chromium.org, rsesek...@chromium.org, video-networking...@google.com, lwinston+watc...@google.com, dibyapal+wa...@chromium.org, lens-chrome...@google.com, jonmann+w...@chromium.org, khmel...@chromium.org, cwp-review...@google.com, iclella...@chromium.org, nona+...@chromium.org, petewi...@chromium.org, zol...@webkit.org, chfreme...@chromium.org, aashna...@google.com, vinnypersky+...@google.com, dmurph+watc...@chromium.org, byronle...@chromium.org, yusufo...@chromium.org, asumane...@google.com, ckitaga...@chromium.org, anastas...@google.com, michaelchec...@google.com, nickdiego+wa...@igalia.com, ender...@chromium.org, hansberry+w...@chromium.org, kouhe...@chromium.org, aleventh...@chromium.org, pasko...@chromium.org, dominicc+...@chromium.org, nyquis...@chromium.org, print-rev...@chromium.org, fserb...@chromium.org, jatapiaro+wat...@google.com, iwells...@chromium.org, msrame...@chromium.org, antoniosarto...@chromium.org, gcasto+w...@chromium.org, rginda...@chromium.org, lizeb...@chromium.org, shannc...@chromium.org, media-wi...@chromium.org, xiangdongkong+...@google.com, dmurph+watchin...@chromium.org, mickeybu...@chromium.org, chrome-intell...@chromium.org, mcasas+med...@chromium.org, menghua...@google.com, ajayramamurth...@google.com, yongshun+...@google.com, tgupta...@chromium.org, pmonett...@chromium.org, thegreenf...@chromium.org, ydago...@chromium.org, extension...@chromium.org, moqati-team+chr...@google.com, dfried...@chromium.org, fgorsk...@chromium.org, blink-revi...@chromium.org, edgesto...@microsoft.com, hansberry+wa...@chromium.org, language...@chromium.org, ios-r...@chromium.org, cros-setti...@google.com, arc-review...@google.com, davidj...@chromium.org, ajayramamurt...@google.com, ashleynewson+watch-...@chromium.org, eugeni...@chromium.org, lingqi...@chromium.org, christia...@chromium.org, martijn...@martijnc.be, torne...@chromium.org, pushi+wat...@google.com, mar...@chromium.org, yhanada...@chromium.org, gavinp...@chromium.org, dmblac...@google.com, chrome-tab-group-en...@google.com, kouhei...@chromium.org, vaapi-...@chromium.org, oilpan-rev...@chromium.org, core-timi...@chromium.org, ozone-...@chromium.org, toshikikikuch...@chromium.org, kouhe...@chromium.org, niharm...@google.com, cros-print...@google.com, max+watc...@igalia.com, wychen...@chromium.org, geoffla...@chromium.org, tracing...@chromium.org, zackha...@chromium.org, dewitt...@chromium.org, blink-revie...@chromium.org, longbowei+watc...@google.com, michaelcheco+...@google.com, asvitkine...@chromium.org, alexmo...@chromium.org, jmedle...@chromium.org, gl...@chromium.org, ayman...@chromium.org, gangwu...@chromium.org, spang...@chromium.org, scheduler...@chromium.org, bartek...@chromium.org, olka+...@chromium.org, suetfei+wa...@google.com, rhalava...@chromium.org, cc-...@chromium.org, tbarzi...@chromium.org, tluk+...@chromium.org, shend...@chromium.org, steimel+...@chromium.org, abigailbk...@google.com, longbowei+fe...@google.com, yyhyyh+fee...@google.com, ejcaruso+wa...@chromium.org, ashleydp+fe...@google.com, harringt...@chromium.org, jimmyxgong+w...@chromium.org, estali...@chromium.org, jackshira+wa...@google.com, jimmyxgong+watch...@chromium.org, cros-system-ui-prod...@google.com, ios-web-view...@google.com, dmurph+watchi...@chromium.org, mpdento...@chromium.org, ajayramamurthy...@google.com, oshima...@chromium.org, jeffreycohen+watc...@chromium.org, ios-revie...@chromium.org, cros-report...@google.com, jackshira+...@google.com, chungshe...@google.com, chadduffin+wa...@chromium.org, dclasson+w...@google.com, djacob...@chromium.org, roblia...@chromium.org, hansberry+wa...@chromium.org, rrsilva+wat...@google.com, jdeblas...@chromium.org, kinuko...@chromium.org, jonmann+watc...@chromium.org, dkrahn...@chromium.org, blink-rev...@chromium.org, filesapp...@chromium.org, penghu...@chromium.org, dmurph+watchi...@chromium.org, devtools...@chromium.org, loading-re...@chromium.org, hashimo...@chromium.org, titoua...@chromium.org, servicewor...@chromium.org, permissio...@chromium.org, web-schedulin...@chromium.org, agriev...@chromium.org, dcheng+c...@chromium.org, performance-m...@chromium.org, jz...@chromium.org, blink-re...@chromium.org, fmalit...@chromium.org, security-...@chromium.org, jorgel...@chromium.org, vakh+safe_br...@chromium.org, crmulli...@chromium.org, drott+bl...@chromium.org, hansberry+w...@chromium.org, asvitki...@chromium.org, jdonnel...@chromium.org, dmurph+watching...@chromium.org, zelin+watch-we...@chromium.org, srahim...@chromium.org, blink-...@chromium.org, blink-revie...@chromium.org, net-r...@chromium.org, storage...@chromium.org
                    Attention needed from Adam Rice, Himanshu Panwar and Rakina Zata Amni

                    Jatin Mittal added 1 comment

                    File third_party/blink/renderer/platform/runtime_enabled_features.json5
                    Line 930, Patchset 10: // Kill switch for Fetch-compliant Range header validation on blob: URLs.
                    Adam Rice . resolved

                    Sorry, I mistakenly assumed the cost was in Blink. Since the feature is not in Blink, it is wasteful (and an encapsulation violation) to define it here, and you should define i in storage/browser/blob/features.h instead.

                    Jatin Mittal

                    Done, I've updated it. Thanks for the clarification, and sorry for the oversight. I'm still getting familiar with the repository structure, and I'll make sure to pay closer attention to this in the future.

                    Open in Gerrit

                    Related details

                    Attention is currently required from:
                    • Adam Rice
                    • Himanshu Panwar
                    • Rakina Zata Amni
                    Submit Requirements:
                      • requirement satisfiedCode-Coverage
                      • requirement is not satisfiedCode-Owners
                      • requirement is not satisfiedCode-Review
                      • requirement is not satisfiedReview-Enforcement
                      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: I8abf9ce8263dd3b2db2e43e728855be09338cee5
                      Gerrit-Change-Number: 7902659
                      Gerrit-PatchSet: 11
                      Gerrit-CC: Sharon Yang <yangs...@igalia.com>
                      Gerrit-CC: Shu Yang <shu...@google.com>
                      Gerrit-CC: Simon Hangl <sim...@google.com>
                      Gerrit-CC: Sinan Sahin <sinan...@google.com>
                      Gerrit-CC: Stephen Chenney <sche...@chromium.org>
                      Gerrit-CC: Thiabaud Engelbrecht <thia...@google.com>
                      Gerrit-CC: Thorsten Kober <thor...@google.com>
                      Gerrit-CC: Tommy Li <tomm...@chromium.org>
                      Gerrit-CC: Urvang Joshi <urv...@chromium.org>
                      Gerrit-CC: Wang, Wei4 <wei4...@intel.com>
                      Gerrit-CC: Xida Chen <xida...@chromium.org>
                      Gerrit-CC: Yao Xiao <yao...@chromium.org>
                      Gerrit-CC: Zewen Li <zew...@google.com>
                      Gerrit-CC: Zhe Su <su...@chromium.org>
                      Gerrit-CC: Zijie He <zij...@google.com>
                      Gerrit-CC: kokoro <noreply...@google.com>
                      Gerrit-CC: srirama chandra sekhar <srir...@samsung.com>
                      Gerrit-Attention: Himanshu Panwar <himp...@microsoft.com>
                      Gerrit-Attention: Adam Rice <ri...@chromium.org>
                      Gerrit-Attention: Rakina Zata Amni <rak...@chromium.org>
                      Gerrit-Comment-Date: Fri, 26 Jun 2026 15:34:42 +0000
                      Gerrit-HasComments: Yes
                      Gerrit-Has-Labels: No
                      Comment-In-Reply-To: Adam Rice <ri...@chromium.org>
                      satisfied_requirement
                      unsatisfied_requirement
                      open
                      diffy

                      Jatin Mittal (Gerrit)

                      unread,
                      6:32 AM (6 hours ago) 6:32 AM
                      to Adam Rice, Rakina Zata Amni, Christian Biesinger, Urvang Joshi, Kevin McNee, Per Åhgren, Reid Kleckner, Ale Bzk, Fredrik Söderquist, Lei Zhang, Kenneth R Christiansen, Enterprise Policy Reviews, Ian Vollick, Jiewei Qian, Rijubrata Bhaumik, Mirko Bonadei, Daniel Cheng, Linyu He, Xida Chen, Ilya Biryukov, Josh Karlin, Anurag Simgeker, Sadrul Chowdhury, Hans Wennborg, James Maclean, Mangesh Ghiware, Sam Zackrisson, Mandy, Arnaud, Chromium Metrics Reviews, Michael Moss, Morten Stenshorne, Simon Hangl, Hiroki Nakagawa, Nikhil Nayunigari, Peter Beverloo, Wang, Wei4, Peter Williamson, Ryan Sultanem, Shu Yang, Zhe Su, Charles Hager, Kevin Babbitt, Andrew Rayskiy, Kenneth Rohde Christiansen, Kentaro Hara, Khushal Sagar, Javier Fernandez, Stephen Chenney, Nico Weber, Hu, Ningxin, Hirokazu Honda, Avi Drissman, CJ DiMeglio, Nate Chapin, Sinan Sahin, Neil Coronado, Menard, Alexis, Zewen Li, Moe Adel, Tommy Li, Peter Collingbourne, (Julie)Jeongeun Kim, Thiabaud Engelbrecht, Yao Xiao, Raphael Kubo da Costa, Hongchan Choi, Jerome Jiang, Olga Gerchikov, Lin, Wanming, Heron Yang, AJITH KUMAR V, Sharon Yang, Fernando Fiori, Thorsten Kober, srirama chandra sekhar, Zijie He, Mark Schillaci, Dirk Schulze, AyeAye Python Dispatcher, kokoro, Himanshu Panwar, Mayur Patil, android-bu...@system.gserviceaccount.com, Chromium LUCI CQ, chromium...@chromium.org, blink-rev...@chromium.org, accessibility-a...@google.com, ddrone...@google.com, webauthn...@chromium.org, ashleynewson+watch...@chromium.org, crisrael+...@google.com, josiah...@chromium.org, xlythe+wa...@google.com, yhanad...@chromium.org, nicolas...@chromium.org, network-ser...@chromium.org, osaul+aut...@google.com, cros-ed...@google.com, halliwe...@chromium.org, droger+w...@chromium.org, mac-r...@chromium.org, meilian...@chromium.org, headless...@chromium.org, kuragin+web-ap...@chromium.org, blink-rev...@chromium.org, yigu+...@chromium.org, jackshira+w...@google.com, mlcui+watch-os-s...@google.com, marq+...@chromium.org, nikhilcn+wat...@google.com, weiluanw...@google.com, bmcquad...@chromium.org, glazuno...@chromium.org, kyungjunle...@google.com, blink-re...@chromium.org, enne...@chromium.org, nektar...@chromium.org, andysjl...@chromium.org, core-web-vita...@chromium.org, chrome-gr...@chromium.org, trewin...@google.com, dtapuska+...@chromium.org, wfh+...@chromuium.org, crisrael+wa...@google.com, dennyh...@google.com, xiaohui...@chromium.org, chikamu...@chromium.org, dtapuska+ch...@chromium.org, michaelcheco+wa...@google.com, keithle...@chromium.org, fenced-fra...@chromium.org, odejesu...@chromium.org, japhet+...@chromium.org, chromeos-gfx-...@google.com, sky+...@chromium.org, yhanada+...@chromium.org, fdoray...@chromium.org, crisrael+w...@google.com, gogeral...@chromium.org, jasonrhee+w...@google.com, danakj...@chromium.org, dmurph+wa...@chromium.org, hansberry+wat...@chromium.org, hanxi...@chromium.org, jackshira+wat...@google.com, mgiuca...@chromium.org, mfoltz+wa...@chromium.org, devtools-re...@chromium.org, lighthouse-eng-extern...@google.com, yuzo+...@chromium.org, ios-actor...@google.com, mfoltz+wa...@chromium.org, blink-revie...@chromium.org, creis...@chromium.org, loading-rev...@chromium.org, tranbaod...@chromium.org, jiajunz+wa...@google.com, bling-ai-foundatio...@google.com, blink-reviews-p...@chromium.org, bnc+...@chromium.org, siashah+au...@chromium.org, rmcelra...@chromium.org, webap...@microsoft.com, jbroma...@chromium.org, bling-alchemy-eng+...@google.com, jackshira+wat...@google.com, speed-metr...@chromium.org, caitkp...@chromium.org, schedule...@chromium.org, fuchsia...@chromium.org, ortuno...@chromium.org, speed-metrics...@chromium.org, yuezhang...@chromium.org, apavlo...@chromium.org, jonmann+wa...@chromium.org, erickun...@chromium.org, khorimoto+wa...@chromium.org, jasonrobe...@google.com, hsuregan+wat...@chromium.org, xiaochen...@chromium.org, borealis-re...@google.com, tommyw+w...@chromium.org, philli...@chromium.org, aji...@samsung.com, cblume...@chromium.org, stevenjb+wa...@chromium.org, yfriedm...@chromium.org, phshah...@chromium.org, pdf-r...@chromium.org, mdjone...@chromium.org, johnche...@chromium.org, cbe-cep-eng...@google.com, joeantonetti+wa...@google.com, chlily...@chromium.org, akingsb+wat...@google.com, jimmyxgong+wat...@chromium.org, ricea...@chromium.org, hiroshig...@chromium.org, print-revi...@chromium.org, hansenmichael...@google.com, dmurph+wat...@chromium.org, blink-rev...@chromium.org, vasilii+watchlis...@chromium.org, peter+watch...@chromium.org, scheduler-...@chromium.org, blink-revi...@chromium.org, wfh+...@chromium.org, jbauma...@chromium.org, knollr+wat...@chromium.org, ffred...@chromium.org, loading-rev...@chromium.org, gab+...@chromium.org, wnwen...@chromium.org, alandin...@chromium.org, cros-enterpris...@chromium.org, jackshira+w...@google.com, crisrael+wa...@google.com, mtomas...@chromium.org, francisjp...@google.com, ios-rev...@chromium.org, telemetr...@chromium.org, chromiumme...@microsoft.com, katie...@chromium.org, mattsimm...@chromium.org, android-web...@chromium.org, dullweb...@chromium.org, eric.c...@apple.com, hais+wat...@google.com, peilinwa...@google.com, prerenderi...@chromium.org, lizeb+watch...@chromium.org, croissant-...@chromium.org, yhanada+...@chromium.org, hirokisa...@chromium.org, blink-re...@chromium.org, translat...@chromium.org, ramyagopa...@google.com, gavinp...@chromium.org, pkotwic...@chromium.org, blink-revi...@chromium.org, khorimoto+w...@chromium.org, cros-essential...@chromium.org, glider...@chromium.org, jackshira+wa...@google.com, chili...@chromium.org, arthursonzog...@chromium.org, mattreyno...@chromium.org, omnibox-...@chromium.org, csharris...@chromium.org, dtraino...@chromium.org, shuche...@chromium.org, bhartmire+w...@google.com, shimazu+se...@chromium.org, kinuko+ser...@chromium.org, armalhotra+a...@google.com, chrome-regionalc...@google.com, dtseng+c...@chromium.org, twelling...@chromium.org, joeantonetti+...@google.com, chadduffin+w...@chromium.org, jshin...@chromium.org, jonmann+wat...@chromium.org, subresource-f...@chromium.org, kinuko+...@chromium.org, ntp-dev...@chromium.org, chromeos-ca...@google.com, csharrison+...@chromium.org, inca-eng...@google.com, feature-me...@chromium.org, jessemcke...@google.com, penghuan...@chromium.org, tmartino+tran...@chromium.org, media-cro...@chromium.org, rsleev...@chromium.org, chromotin...@chromium.org, aixba+wat...@chromium.org, loading...@chromium.org, rkgibso...@chromium.org, roagarw...@chromium.org, chasej...@chromium.org, gavin...@chromium.org, ukai+...@chromium.org, chromium-a...@chromium.org, hsuregan+wa...@chromium.org, webapks-...@chromium.org, pdr+svgw...@chromium.org, stanfie...@google.com, donnd...@chromium.org, xinghui...@chromium.org, jbrom...@chromium.org, ajayramamurth...@google.com, chromium-...@engflow.com, npm+...@chromium.org, sloboda...@chromium.org, lucasrada...@google.com, jackshira+w...@google.com, blink-re...@chromium.org, silv...@chromium.org, mek+w...@chromium.org, crostin...@chromium.org, eme-r...@chromium.org, phoglun...@chromium.org, shimazu...@chromium.org, fgal...@chromium.org, hansberry+wa...@chromium.org, hidehik...@chromium.org, tote-eng...@google.com, ajayramamurthy...@google.com, kenjibah...@chromium.org, jackshira+wa...@google.com, eic+...@google.com, wangdanny+fe...@google.com, kinuko...@chromium.org, browser-comp...@chromium.org, pushi+wa...@google.com, pushi+watc...@google.com, chromeos-kio...@google.com, ajwong...@chromium.org, emircan+watch...@chromium.org, derinel+wat...@google.com, loyso...@chromium.org, mfoltz+wa...@chromium.org, nwoked...@chromium.org, dom+...@chromium.org, polard...@google.com, shgar+aut...@google.com, julietlevesque...@google.com, dtseng...@chromium.org, lize...@chromium.org, dmurph+watch...@chromium.org, mkwst+w...@chromium.org, crost...@chromium.org, tburkar...@chromium.org, marinacio...@chromium.org, dmurph+watch...@chromium.org, horo+...@chromium.org, jiajunz+wat...@google.com, gavin...@chromium.org, mercer...@google.com, jophba...@chromium.org, ajayramamurthy+w...@google.com, chrome-intelligence-te...@google.com, ananyasee...@google.com, blink-work...@chromium.org, navigation...@chromium.org, siyua+aut...@chromium.org, stluon...@chromium.org, feature-v...@chromium.org, rsesek...@chromium.org, video-networking...@google.com, lwinston+watc...@google.com, dibyapal+wa...@chromium.org, lens-chrome...@google.com, jonmann+w...@chromium.org, khmel...@chromium.org, cwp-review...@google.com, iclella...@chromium.org, nona+...@chromium.org, petewi...@chromium.org, zol...@webkit.org, chfreme...@chromium.org, aashna...@google.com, vinnypersky+...@google.com, dmurph+watc...@chromium.org, byronle...@chromium.org, yusufo...@chromium.org, asumane...@google.com, ckitaga...@chromium.org, anastas...@google.com, michaelchec...@google.com, nickdiego+wa...@igalia.com, ender...@chromium.org, hansberry+w...@chromium.org, kouhe...@chromium.org, aleventh...@chromium.org, pasko...@chromium.org, dominicc+...@chromium.org, nyquis...@chromium.org, print-rev...@chromium.org, fserb...@chromium.org, jatapiaro+wat...@google.com, iwells...@chromium.org, msrame...@chromium.org, antoniosarto...@chromium.org, gcasto+w...@chromium.org, rginda...@chromium.org, lizeb...@chromium.org, shannc...@chromium.org, media-wi...@chromium.org, xiangdongkong+...@google.com, dmurph+watchin...@chromium.org, mickeybu...@chromium.org, chrome-intell...@chromium.org, mcasas+med...@chromium.org, menghua...@google.com, ajayramamurth...@google.com, yongshun+...@google.com, tgupta...@chromium.org, pmonett...@chromium.org, thegreenf...@chromium.org, ydago...@chromium.org, extension...@chromium.org, moqati-team+chr...@google.com, dfried...@chromium.org, fgorsk...@chromium.org, blink-revi...@chromium.org, edgesto...@microsoft.com, hansberry+wa...@chromium.org, language...@chromium.org, ios-r...@chromium.org, cros-setti...@google.com, arc-review...@google.com, davidj...@chromium.org, ajayramamurt...@google.com, ashleynewson+watch-...@chromium.org, eugeni...@chromium.org, lingqi...@chromium.org, christia...@chromium.org, martijn...@martijnc.be, torne...@chromium.org, pushi+wat...@google.com, mar...@chromium.org, yhanada...@chromium.org, gavinp...@chromium.org, dmblac...@google.com, chrome-tab-group-en...@google.com, kouhei...@chromium.org, vaapi-...@chromium.org, oilpan-rev...@chromium.org, core-timi...@chromium.org, ozone-...@chromium.org, toshikikikuch...@chromium.org, kouhe...@chromium.org, niharm...@google.com, cros-print...@google.com, max+watc...@igalia.com, wychen...@chromium.org, geoffla...@chromium.org, tracing...@chromium.org, zackha...@chromium.org, dewitt...@chromium.org, blink-revie...@chromium.org, longbowei+watc...@google.com, michaelcheco+...@google.com, asvitkine...@chromium.org, alexmo...@chromium.org, jmedle...@chromium.org, gl...@chromium.org, ayman...@chromium.org, gangwu...@chromium.org, spang...@chromium.org, scheduler...@chromium.org, bartek...@chromium.org, olka+...@chromium.org, suetfei+wa...@google.com, rhalava...@chromium.org, cc-...@chromium.org, tbarzi...@chromium.org, tluk+...@chromium.org, shend...@chromium.org, steimel+...@chromium.org, abigailbk...@google.com, longbowei+fe...@google.com, yyhyyh+fee...@google.com, ejcaruso+wa...@chromium.org, ashleydp+fe...@google.com, harringt...@chromium.org, jimmyxgong+w...@chromium.org, estali...@chromium.org, jackshira+wa...@google.com, jimmyxgong+watch...@chromium.org, cros-system-ui-prod...@google.com, ios-web-view...@google.com, dmurph+watchi...@chromium.org, mpdento...@chromium.org, ajayramamurthy...@google.com, oshima...@chromium.org, jeffreycohen+watc...@chromium.org, ios-revie...@chromium.org, cros-report...@google.com, jackshira+...@google.com, chungshe...@google.com, chadduffin+wa...@chromium.org, dclasson+w...@google.com, djacob...@chromium.org, roblia...@chromium.org, hansberry+wa...@chromium.org, rrsilva+wat...@google.com, jdeblas...@chromium.org, kinuko...@chromium.org, jonmann+watc...@chromium.org, dkrahn...@chromium.org, blink-rev...@chromium.org, filesapp...@chromium.org, penghu...@chromium.org, dmurph+watchi...@chromium.org, devtools...@chromium.org, loading-re...@chromium.org, hashimo...@chromium.org, titoua...@chromium.org, servicewor...@chromium.org, permissio...@chromium.org, web-schedulin...@chromium.org, agriev...@chromium.org, dcheng+c...@chromium.org, performance-m...@chromium.org, jz...@chromium.org, blink-re...@chromium.org, fmalit...@chromium.org, security-...@chromium.org, jorgel...@chromium.org, vakh+safe_br...@chromium.org, crmulli...@chromium.org, drott+bl...@chromium.org, hansberry+w...@chromium.org, asvitki...@chromium.org, jdonnel...@chromium.org, dmurph+watching...@chromium.org, zelin+watch-we...@chromium.org, srahim...@chromium.org, blink-...@chromium.org, blink-revie...@chromium.org, net-r...@chromium.org, storage...@chromium.org
                      Attention needed from Adam Rice, Himanshu Panwar and Rakina Zata Amni

                      Jatin Mittal voted

                      Auto-Submit+1
                      Commit-Queue+1
                      Open in Gerrit

                      Related details

                      Attention is currently required from:
                      • Adam Rice
                      • Himanshu Panwar
                      • Rakina Zata Amni
                      Submit Requirements:
                      • requirement satisfiedCode-Coverage
                      • requirement is not satisfiedCode-Owners
                      • requirement is not satisfiedCode-Review
                      • requirement is not satisfiedReview-Enforcement
                      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: I8abf9ce8263dd3b2db2e43e728855be09338cee5
                      Gerrit-Change-Number: 7902659
                      Gerrit-PatchSet: 11
                      Gerrit-Owner: Jatin Mittal <jatin...@microsoft.com>
                      Gerrit-Reviewer: Adam Rice <ri...@chromium.org>
                      Gerrit-Reviewer: Jatin Mittal <jatin...@microsoft.com>
                      Gerrit-Reviewer: Mayur Patil <patil...@microsoft.com>
                      Gerrit-Comment-Date: Sat, 27 Jun 2026 10:32:00 +0000
                      Gerrit-HasComments: No
                      Gerrit-Has-Labels: Yes
                      satisfied_requirement
                      unsatisfied_requirement
                      open
                      diffy
                      Reply all
                      Reply to author
                      Forward
                      0 new messages