iwa: Introduce the chromeos.iwa interface for blink extensions [chromium/src : main]

38 views
Skip to first unread message

Edman Anjos (Gerrit)

unread,
Feb 9, 2026, 4:10:54 AM (2 days ago) Feb 9
to Edman Anjos, Andrew Rayskiy, Chromium LUCI CQ, chromium...@chromium.org, Raphael Kubo da Costa, Kentaro Hara, AyeAye, chromium-a...@chromium.org, jmedle...@chromium.org, extension...@chromium.org, kinuko...@chromium.org, blink-...@chromium.org, oshima...@chromium.org, blink-revie...@chromium.org
Attention needed from Andrew Rayskiy

Edman Anjos added 1 comment

Patchset-level comments
File-level comment, Patchset 5 (Latest):
Edman Anjos . resolved

hi Andrew, PTAL

Open in Gerrit

Related details

Attention is currently required from:
  • Andrew Rayskiy
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: Ic81f8afa247f1d6e4f77cc11e8815f2ec40aa2bd
Gerrit-Change-Number: 7210901
Gerrit-PatchSet: 5
Gerrit-Owner: Edman Anjos <ed...@chromium.org>
Gerrit-Reviewer: Andrew Rayskiy <green...@google.com>
Gerrit-Reviewer: Edman Anjos <ed...@chromium.org>
Gerrit-CC: Kentaro Hara <har...@chromium.org>
Gerrit-CC: Raphael Kubo da Costa <ku...@igalia.com>
Gerrit-Attention: Andrew Rayskiy <green...@google.com>
Gerrit-Comment-Date: Mon, 09 Feb 2026 09:10:41 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
satisfied_requirement
unsatisfied_requirement
open
diffy

Andrew Rayskiy (Gerrit)

unread,
Feb 9, 2026, 5:49:02 AM (2 days ago) Feb 9
to Edman Anjos, Chromium LUCI CQ, chromium...@chromium.org, Raphael Kubo da Costa, Kentaro Hara, AyeAye, chromium-a...@chromium.org, jmedle...@chromium.org, extension...@chromium.org, kinuko...@chromium.org, blink-...@chromium.org, oshima...@chromium.org, blink-revie...@chromium.org
Attention needed from Edman Anjos

Andrew Rayskiy added 3 comments

File chrome/browser/ash/isolated_web_app/BUILD.gn
Line 1, Patchset 6 (Latest):# Copyright 2026 The Chromium Authors
Andrew Rayskiy . unresolved

Shouldn't we rather keep all of this in `/chromeos/cros_apps/`?

File chrome/browser/ash/isolated_web_app/blink_extensions_browsertest.cc
Line 52, Patchset 6 (Latest): auto result = content::EvalJs(frame, "window.chromeos.iwa.echo('hello')");
Andrew Rayskiy . unresolved

Testing that `chromeos.iwa` is defined should already be enough!

File third_party/blink/renderer/extensions/chromeos/iwa/iwa.idl
Line 15, Patchset 6 (Latest): DOMString echo(DOMString message);
Andrew Rayskiy . unresolved

We don't randomly release functions in blink! Let's remove this.

As for the interface itself, it would be good to hide it behind a `runtime_enabled_flag` until we have at least one proper function to it (not here, but at the member level in `cros.idl`)

Open in Gerrit

Related details

Attention is currently required from:
  • Edman Anjos
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: Ic81f8afa247f1d6e4f77cc11e8815f2ec40aa2bd
    Gerrit-Change-Number: 7210901
    Gerrit-PatchSet: 6
    Gerrit-Owner: Edman Anjos <ed...@chromium.org>
    Gerrit-Reviewer: Andrew Rayskiy <green...@google.com>
    Gerrit-Reviewer: Edman Anjos <ed...@chromium.org>
    Gerrit-CC: Kentaro Hara <har...@chromium.org>
    Gerrit-CC: Raphael Kubo da Costa <ku...@igalia.com>
    Gerrit-Attention: Edman Anjos <ed...@chromium.org>
    Gerrit-Comment-Date: Mon, 09 Feb 2026 10:48:50 +0000
    Gerrit-HasComments: Yes
    Gerrit-Has-Labels: No
    satisfied_requirement
    unsatisfied_requirement
    open
    diffy

    Edman Anjos (Gerrit)

    unread,
    Feb 9, 2026, 6:03:03 AM (2 days ago) Feb 9
    to Edman Anjos, Andrew Rayskiy, Chromium LUCI CQ, chromium...@chromium.org, Raphael Kubo da Costa, Kentaro Hara, AyeAye, chromium-a...@chromium.org, jmedle...@chromium.org, extension...@chromium.org, kinuko...@chromium.org, blink-...@chromium.org, oshima...@chromium.org, blink-revie...@chromium.org
    Attention needed from Andrew Rayskiy

    Edman Anjos added 3 comments

    File chrome/browser/ash/isolated_web_app/BUILD.gn
    Line 1, Patchset 6 (Latest):# Copyright 2026 The Chromium Authors
    Andrew Rayskiy . resolved

    Shouldn't we rather keep all of this in `/chromeos/cros_apps/`?

    Edman Anjos

    no, I don't think we want to launch that code, or build up on it

    File chrome/browser/ash/isolated_web_app/blink_extensions_browsertest.cc
    Line 52, Patchset 6 (Latest): auto result = content::EvalJs(frame, "window.chromeos.iwa.echo('hello')");
    Andrew Rayskiy . resolved

    Testing that `chromeos.iwa` is defined should already be enough!

    Edman Anjos

    Acknowledged, I know, but this seems acceptable too?

    File third_party/blink/renderer/extensions/chromeos/iwa/iwa.idl
    Line 15, Patchset 6 (Latest): DOMString echo(DOMString message);
    Andrew Rayskiy . resolved

    We don't randomly release functions in blink! Let's remove this.

    As for the interface itself, it would be good to hide it behind a `runtime_enabled_flag` until we have at least one proper function to it (not here, but at the member level in `cros.idl`)

    Edman Anjos

    the whole chromeos interface is already behind a flag. I intend to introduce a runtime flag for APIs that are not a placeholder.

    the placeholder will help place the boilerplate scaffold that setShape can come into soon.

    Open in Gerrit

    Related details

    Attention is currently required from:
    • Andrew Rayskiy
    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: Ic81f8afa247f1d6e4f77cc11e8815f2ec40aa2bd
      Gerrit-Change-Number: 7210901
      Gerrit-PatchSet: 6
      Gerrit-Owner: Edman Anjos <ed...@chromium.org>
      Gerrit-Reviewer: Andrew Rayskiy <green...@google.com>
      Gerrit-Reviewer: Edman Anjos <ed...@chromium.org>
      Gerrit-CC: Kentaro Hara <har...@chromium.org>
      Gerrit-CC: Raphael Kubo da Costa <ku...@igalia.com>
      Gerrit-Attention: Andrew Rayskiy <green...@google.com>
      Gerrit-Comment-Date: Mon, 09 Feb 2026 11:02:51 +0000
      Gerrit-HasComments: Yes
      Gerrit-Has-Labels: No
      Comment-In-Reply-To: Andrew Rayskiy <green...@google.com>
      satisfied_requirement
      unsatisfied_requirement
      open
      diffy

      Andrew Rayskiy (Gerrit)

      unread,
      Feb 9, 2026, 6:38:58 AM (2 days ago) Feb 9
      to Edman Anjos, Chromium LUCI CQ, chromium...@chromium.org, Raphael Kubo da Costa, Kentaro Hara, AyeAye, chromium-a...@chromium.org, jmedle...@chromium.org, extension...@chromium.org, kinuko...@chromium.org, blink-...@chromium.org, oshima...@chromium.org, blink-revie...@chromium.org
      Attention needed from Edman Anjos

      Andrew Rayskiy added 1 comment

      File third_party/blink/renderer/extensions/chromeos/iwa/iwa.idl
      Line 15, Patchset 6 (Latest): DOMString echo(DOMString message);
      Andrew Rayskiy . unresolved

      We don't randomly release functions in blink! Let's remove this.

      As for the interface itself, it would be good to hide it behind a `runtime_enabled_flag` until we have at least one proper function to it (not here, but at the member level in `cros.idl`)

      Edman Anjos

      the whole chromeos interface is already behind a flag. I intend to introduce a runtime flag for APIs that are not a placeholder.

      the placeholder will help place the boilerplate scaffold that setShape can come into soon.

      Andrew Rayskiy

      It's fine to create the interface, but what's the point of the function per se? 😊 It doesn't help you set anything up, it doesn't help you with tests; having an empty interface is perfectly acceptable already.

      Open in Gerrit

      Related details

      Attention is currently required from:
      • Edman Anjos
      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: Ic81f8afa247f1d6e4f77cc11e8815f2ec40aa2bd
        Gerrit-Change-Number: 7210901
        Gerrit-PatchSet: 6
        Gerrit-Owner: Edman Anjos <ed...@chromium.org>
        Gerrit-Reviewer: Andrew Rayskiy <green...@google.com>
        Gerrit-Reviewer: Edman Anjos <ed...@chromium.org>
        Gerrit-CC: Kentaro Hara <har...@chromium.org>
        Gerrit-CC: Raphael Kubo da Costa <ku...@igalia.com>
        Gerrit-Attention: Edman Anjos <ed...@chromium.org>
        Gerrit-Comment-Date: Mon, 09 Feb 2026 11:38:41 +0000
        Gerrit-HasComments: Yes
        Gerrit-Has-Labels: No
        Comment-In-Reply-To: Andrew Rayskiy <green...@google.com>
        Comment-In-Reply-To: Edman Anjos <ed...@chromium.org>
        satisfied_requirement
        unsatisfied_requirement
        open
        diffy

        Simon Hangl (Gerrit)

        unread,
        Feb 9, 2026, 7:07:14 AM (2 days ago) Feb 9
        to Edman Anjos, Andrew Rayskiy, Chromium LUCI CQ, chromium...@chromium.org, Raphael Kubo da Costa, Kentaro Hara, AyeAye, chromium-a...@chromium.org, jmedle...@chromium.org, extension...@chromium.org, kinuko...@chromium.org, blink-...@chromium.org, oshima...@chromium.org, blink-revie...@chromium.org
        Attention needed from Edman Anjos

        Simon Hangl added 1 comment

        File chrome/browser/ash/isolated_web_app/README.md
        Line 3, Patchset 6 (Latest):This directory is the browser counterpart to the Blink extensions defined in
        Simon Hangl . unresolved

        driveby comment: i am not sure we want to put that stuff in ash (at least it doesn't match my mental model of what ash is for)

        Gerrit-CC: Simon Hangl <sim...@google.com>
        Gerrit-Attention: Edman Anjos <ed...@chromium.org>
        Gerrit-Comment-Date: Mon, 09 Feb 2026 12:06:57 +0000
        Gerrit-HasComments: Yes
        Gerrit-Has-Labels: No
        satisfied_requirement
        unsatisfied_requirement
        open
        diffy

        Edman Anjos (Gerrit)

        unread,
        Feb 9, 2026, 8:38:20 AM (2 days ago) Feb 9
        to Edman Anjos, Simon Hangl, Andrew Rayskiy, Chromium LUCI CQ, chromium...@chromium.org, Raphael Kubo da Costa, Kentaro Hara, AyeAye, chromium-a...@chromium.org, jmedle...@chromium.org, extension...@chromium.org, kinuko...@chromium.org, blink-...@chromium.org, oshima...@chromium.org, blink-revie...@chromium.org
        Attention needed from Andrew Rayskiy and Simon Hangl

        Edman Anjos added 2 comments

        File chrome/browser/ash/isolated_web_app/README.md
        Line 3, Patchset 6 (Latest):This directory is the browser counterpart to the Blink extensions defined in
        Simon Hangl . unresolved

        driveby comment: i am not sure we want to put that stuff in ash (at least it doesn't match my mental model of what ash is for)

        Edman Anjos

        Can you clarify where you would put it instead?

        File third_party/blink/renderer/extensions/chromeos/iwa/iwa.idl
        Line 15, Patchset 6 (Latest): DOMString echo(DOMString message);
        Andrew Rayskiy . resolved

        We don't randomly release functions in blink! Let's remove this.

        As for the interface itself, it would be good to hide it behind a `runtime_enabled_flag` until we have at least one proper function to it (not here, but at the member level in `cros.idl`)

        Edman Anjos

        the whole chromeos interface is already behind a flag. I intend to introduce a runtime flag for APIs that are not a placeholder.

        the placeholder will help place the boilerplate scaffold that setShape can come into soon.

        Andrew Rayskiy

        It's fine to create the interface, but what's the point of the function per se? 😊 It doesn't help you set anything up, it doesn't help you with tests; having an empty interface is perfectly acceptable already.

        Edman Anjos

        It helps to scaffold the interface here and the mojo connection in another CL. when these things are in place adding setShape should be simpler with the changes needed for that API, not the surrounding boilerplate.

        Open in Gerrit

        Related details

        Attention is currently required from:
        • Andrew Rayskiy
        • Simon Hangl
        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: Ic81f8afa247f1d6e4f77cc11e8815f2ec40aa2bd
        Gerrit-Change-Number: 7210901
        Gerrit-PatchSet: 6
        Gerrit-Owner: Edman Anjos <ed...@chromium.org>
        Gerrit-Reviewer: Andrew Rayskiy <green...@google.com>
        Gerrit-Reviewer: Edman Anjos <ed...@chromium.org>
        Gerrit-CC: Kentaro Hara <har...@chromium.org>
        Gerrit-CC: Raphael Kubo da Costa <ku...@igalia.com>
        Gerrit-CC: Simon Hangl <sim...@google.com>
        Gerrit-Attention: Simon Hangl <sim...@google.com>
        Gerrit-Attention: Andrew Rayskiy <green...@google.com>
        Gerrit-Comment-Date: Mon, 09 Feb 2026 13:38:08 +0000
        Gerrit-HasComments: Yes
        Gerrit-Has-Labels: No
        Comment-In-Reply-To: Simon Hangl <sim...@google.com>
        satisfied_requirement
        unsatisfied_requirement
        open
        diffy

        Edman Anjos (Gerrit)

        unread,
        Feb 9, 2026, 2:24:56 PM (2 days ago) Feb 9
        to Edman Anjos, Georg Neis, Simon Hangl, Andrew Rayskiy, Chromium LUCI CQ, chromium...@chromium.org, Raphael Kubo da Costa, Kentaro Hara, AyeAye, chromium-a...@chromium.org, jmedle...@chromium.org, extension...@chromium.org, kinuko...@chromium.org, blink-...@chromium.org, oshima...@chromium.org, blink-revie...@chromium.org
        Attention needed from Andrew Rayskiy, Georg Neis and Simon Hangl

        Edman Anjos added 2 comments

        Patchset-level comments
        File-level comment, Patchset 7 (Latest):
        Edman Anjos . resolved

        hi Georg, PTAL at //c/b/chromeos

        File chrome/browser/ash/isolated_web_app/README.md
        Line 3, Patchset 6:This directory is the browser counterpart to the Blink extensions defined in
        Simon Hangl . resolved

        driveby comment: i am not sure we want to put that stuff in ash (at least it doesn't match my mental model of what ash is for)

        Edman Anjos

        Can you clarify where you would put it instead?

        Edman Anjos

        Done

        Open in Gerrit

        Related details

        Attention is currently required from:
        • Andrew Rayskiy
        • Georg Neis
        • Simon Hangl
        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: Ic81f8afa247f1d6e4f77cc11e8815f2ec40aa2bd
          Gerrit-Change-Number: 7210901
          Gerrit-PatchSet: 7
          Gerrit-Owner: Edman Anjos <ed...@chromium.org>
          Gerrit-Reviewer: Andrew Rayskiy <green...@google.com>
          Gerrit-Reviewer: Edman Anjos <ed...@chromium.org>
          Gerrit-Reviewer: Georg Neis <ne...@chromium.org>
          Gerrit-CC: Kentaro Hara <har...@chromium.org>
          Gerrit-CC: Raphael Kubo da Costa <ku...@igalia.com>
          Gerrit-CC: Simon Hangl <sim...@google.com>
          Gerrit-Attention: Simon Hangl <sim...@google.com>
          Gerrit-Attention: Andrew Rayskiy <green...@google.com>
          Gerrit-Attention: Georg Neis <ne...@chromium.org>
          Gerrit-Comment-Date: Mon, 09 Feb 2026 19:24:39 +0000
          Gerrit-HasComments: Yes
          Gerrit-Has-Labels: No
          Comment-In-Reply-To: Simon Hangl <sim...@google.com>
          Comment-In-Reply-To: Edman Anjos <ed...@chromium.org>
          satisfied_requirement
          unsatisfied_requirement
          open
          diffy

          Andrew Rayskiy (Gerrit)

          unread,
          Feb 9, 2026, 4:13:41 PM (2 days ago) Feb 9
          to Edman Anjos, Georg Neis, Simon Hangl, Chromium LUCI CQ, chromium...@chromium.org, Raphael Kubo da Costa, Kentaro Hara, AyeAye, chromium-a...@chromium.org, jmedle...@chromium.org, extension...@chromium.org, kinuko...@chromium.org, blink-...@chromium.org, oshima...@chromium.org, blink-revie...@chromium.org
          Attention needed from Georg Neis and Simon Hangl

          Andrew Rayskiy added 1 comment

          Patchset-level comments
          File-level comment, Patchset 6:
          Andrew Rayskiy . unresolved

          @ne...@chromium.org, we're basically reusing the same `cros` namespace in blink extensions with a different browser-side backend (`/chromeos/isolated_web_app/` instead of `/chromeos/cros_apps/`). Given that the latter only defines an empty `cros.kiosk` namespace, won't it make more sense for us to take over that directory instead for our `cros.iwa` stuff? Or completely delete everything in `/chromeos/cros_apps/` and move the only meaningful piece -- tab helper with a pre-commit logic to enable features -- to `/chromeos/isolated_web_apps/`?

          Open in Gerrit

          Related details

          Attention is currently required from:
          • Georg Neis
          • Simon Hangl
          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: Ic81f8afa247f1d6e4f77cc11e8815f2ec40aa2bd
            Gerrit-Change-Number: 7210901
            Gerrit-PatchSet: 7
            Gerrit-Owner: Edman Anjos <ed...@chromium.org>
            Gerrit-Reviewer: Andrew Rayskiy <green...@google.com>
            Gerrit-Reviewer: Edman Anjos <ed...@chromium.org>
            Gerrit-Reviewer: Georg Neis <ne...@chromium.org>
            Gerrit-CC: Kentaro Hara <har...@chromium.org>
            Gerrit-CC: Raphael Kubo da Costa <ku...@igalia.com>
            Gerrit-CC: Simon Hangl <sim...@google.com>
            Gerrit-Attention: Simon Hangl <sim...@google.com>
            Gerrit-Attention: Georg Neis <ne...@chromium.org>
            Gerrit-Comment-Date: Mon, 09 Feb 2026 21:13:25 +0000
            Gerrit-HasComments: Yes
            Gerrit-Has-Labels: No
            satisfied_requirement
            unsatisfied_requirement
            open
            diffy

            Edman Anjos (Gerrit)

            unread,
            Feb 9, 2026, 4:37:30 PM (2 days ago) Feb 9
            to Edman Anjos, Georg Neis, Simon Hangl, Andrew Rayskiy, Chromium LUCI CQ, chromium...@chromium.org, Raphael Kubo da Costa, Kentaro Hara, AyeAye, chromium-a...@chromium.org, jmedle...@chromium.org, extension...@chromium.org, kinuko...@chromium.org, blink-...@chromium.org, oshima...@chromium.org, blink-revie...@chromium.org
            Attention needed from Andrew Rayskiy, Georg Neis and Simon Hangl

            Edman Anjos added 1 comment

            Patchset-level comments
            Andrew Rayskiy . unresolved

            @ne...@chromium.org, we're basically reusing the same `cros` namespace in blink extensions with a different browser-side backend (`/chromeos/isolated_web_app/` instead of `/chromeos/cros_apps/`). Given that the latter only defines an empty `cros.kiosk` namespace, won't it make more sense for us to take over that directory instead for our `cros.iwa` stuff? Or completely delete everything in `/chromeos/cros_apps/` and move the only meaningful piece -- tab helper with a pre-commit logic to enable features -- to `/chromeos/isolated_web_apps/`?

            Edman Anjos

            There might be some misunderstanding in this comment.

            `//c/b/chromeos/cros_apps` declares the rules to enable some APIs, and enables them at runtime, but it doesn't include the API implementation (e.g. mojo services and any logic).

            `//c/b/chromeos/isolated_web_app` is the implementation directory. Whether we'd use `cros_apps` to enable runtime flags is a different matter, not really relevant for this particular CL.

            Open in Gerrit

            Related details

            Attention is currently required from:
            • Andrew Rayskiy
            • Georg Neis
            • Simon Hangl
            Gerrit-Attention: Andrew Rayskiy <green...@google.com>
            Gerrit-Attention: Georg Neis <ne...@chromium.org>
            Gerrit-Comment-Date: Mon, 09 Feb 2026 21:37:16 +0000
            Gerrit-HasComments: Yes
            Gerrit-Has-Labels: No
            Comment-In-Reply-To: Andrew Rayskiy <green...@google.com>
            satisfied_requirement
            unsatisfied_requirement
            open
            diffy

            Edman Anjos (Gerrit)

            unread,
            Feb 10, 2026, 3:33:12 AM (yesterday) Feb 10
            to Edman Anjos, Hidehiko Abe, Georg Neis, Simon Hangl, Andrew Rayskiy, Chromium LUCI CQ, chromium...@chromium.org, Raphael Kubo da Costa, Kentaro Hara, AyeAye, chromium-a...@chromium.org, jmedle...@chromium.org, extension...@chromium.org, kinuko...@chromium.org, blink-...@chromium.org, oshima...@chromium.org, blink-revie...@chromium.org
            Attention needed from Andrew Rayskiy, Georg Neis, Hidehiko Abe and Simon Hangl

            Edman Anjos added 1 comment

            Patchset-level comments
            Edman Anjos . resolved

            hi Hidehiko, PTAL at //c/b/chromeos

            Open in Gerrit

            Related details

            Attention is currently required from:
            • Andrew Rayskiy
            • Georg Neis
            • Hidehiko Abe
            • Simon Hangl
            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: Ic81f8afa247f1d6e4f77cc11e8815f2ec40aa2bd
            Gerrit-Change-Number: 7210901
            Gerrit-PatchSet: 7
            Gerrit-Owner: Edman Anjos <ed...@chromium.org>
            Gerrit-Reviewer: Andrew Rayskiy <green...@google.com>
            Gerrit-Reviewer: Edman Anjos <ed...@chromium.org>
            Gerrit-Reviewer: Georg Neis <ne...@chromium.org>
            Gerrit-Reviewer: Hidehiko Abe <hide...@chromium.org>
            Gerrit-CC: Kentaro Hara <har...@chromium.org>
            Gerrit-CC: Raphael Kubo da Costa <ku...@igalia.com>
            Gerrit-CC: Simon Hangl <sim...@google.com>
            Gerrit-Attention: Simon Hangl <sim...@google.com>
            Gerrit-Attention: Andrew Rayskiy <green...@google.com>
            Gerrit-Attention: Georg Neis <ne...@chromium.org>
            Gerrit-Attention: Hidehiko Abe <hide...@chromium.org>
            Gerrit-Comment-Date: Tue, 10 Feb 2026 08:32:59 +0000
            Gerrit-HasComments: Yes
            Gerrit-Has-Labels: No
            satisfied_requirement
            unsatisfied_requirement
            open
            diffy
            Reply all
            Reply to author
            Forward
            0 new messages