Disallow clipboard reading for certain renderers [chromium/src : main]

0 views
Skip to first unread message

Evan Stade (Gerrit)

unread,
Aug 2, 2022, 2:14:30 PM8/2/22
to chromium-a...@chromium.org, extension...@chromium.org, Devlin Cronin, Adrian Taylor, Chromium LUCI CQ, chromium...@chromium.org

Attention is currently required from: Adrian Taylor, Devlin Cronin, Evan Stade.

Patch set 1:Commit-Queue +1

View Change

1 comment:

To view, visit change 3803699. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: chromium/src
Gerrit-Branch: main
Gerrit-Change-Id: I39c30603ae8883d84f552f3ba6d86c5dd587f59b
Gerrit-Change-Number: 3803699
Gerrit-PatchSet: 1
Gerrit-Owner: Evan Stade <est...@chromium.org>
Gerrit-Reviewer: Adrian Taylor <adet...@chromium.org>
Gerrit-Reviewer: Devlin Cronin <rdevlin...@chromium.org>
Gerrit-Reviewer: Evan Stade <est...@chromium.org>
Gerrit-Attention: Adrian Taylor <adet...@chromium.org>
Gerrit-Attention: Devlin Cronin <rdevlin...@chromium.org>
Gerrit-Attention: Evan Stade <est...@chromium.org>
Gerrit-Comment-Date: Tue, 02 Aug 2022 18:14:13 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment

Devlin Cronin (Gerrit)

unread,
Aug 3, 2022, 7:59:14 PM8/3/22
to Evan Stade, ajayra...@chromium.org, chromium-a...@chromium.org, extension...@chromium.org, Łukasz Anforowicz, Ajay Rahatekar, Devlin Cronin, Adrian Taylor, Chromium LUCI CQ, chromium...@chromium.org

Attention is currently required from: Adrian Taylor, Evan Stade.

View Change

4 comments:

  • Patchset:

    • Patch Set #1:

      Thanks, Evan! This is great to see!

      /cc lukasza@ FYI

  • File chrome/browser/chrome_content_browser_client.cc:

    • I verified this change manually by changing the first two checks to return false. […]

      Two possibilities for a test:

      • (easier) directly test the value of ChromeContentBrowserClient::IsClipboardPasteAllowed() in a test. Essentially:

      ```
      LoadExtensionWithClipboardPermission();
      EXPECT_FALSE(IsClipboardPasteAllowed());
      RunContentScript();
      EXPECT_TRUE(IsClipboardPasteAllowed());
      ```

      • (harder) fake an IPC call from the renderer requesting a paste and verify that it fails. You can see some examples of this in ContentScriptTrackerBrowserTest.

      WDYT?

    • Patch Set #1, Line 6323: return false;

      Poking through some callsites here, it didn't _seem_ like we ever killed the renderer if the result was false. Should we? (We typically kill any renderers that we can identify as sending bogus messages.)

      Obviously, not for this CL; it's out of scope of this change.

  • File extensions/browser/content_script_tracker.h:

    • Patch Set #1, Line 59: GetContentScriptsRunInProcess

      nit: s/GetContentScriptsRun/GetExtensionsThatRanScripts or similar. "GetContentScripts" makes it sound like we're returning the collection of the scripts themselves.

To view, visit change 3803699. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: chromium/src
Gerrit-Branch: main
Gerrit-Change-Id: I39c30603ae8883d84f552f3ba6d86c5dd587f59b
Gerrit-Change-Number: 3803699
Gerrit-PatchSet: 1
Gerrit-Owner: Evan Stade <est...@chromium.org>
Gerrit-Reviewer: Adrian Taylor <adet...@chromium.org>
Gerrit-Reviewer: Devlin Cronin <rdevlin...@chromium.org>
Gerrit-Reviewer: Evan Stade <est...@chromium.org>
Gerrit-CC: Ajay Rahatekar <ajayra...@google.com>
Gerrit-CC: Łukasz Anforowicz <luk...@chromium.org>
Gerrit-Attention: Adrian Taylor <adet...@chromium.org>
Gerrit-Attention: Evan Stade <est...@chromium.org>
Gerrit-Comment-Date: Wed, 03 Aug 2022 23:58:49 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: Evan Stade <est...@chromium.org>
Gerrit-MessageType: comment

Evan Stade (Gerrit)

unread,
Aug 4, 2022, 7:43:15 PM8/4/22
to ajayra...@chromium.org, chromium-a...@chromium.org, extension...@chromium.org, Łukasz Anforowicz, Ajay Rahatekar, Devlin Cronin, Adrian Taylor, Chromium LUCI CQ, chromium...@chromium.org

Attention is currently required from: Adrian Taylor, Devlin Cronin.

View Change

2 comments:

  • File chrome/browser/chrome_content_browser_client.cc:

    • Two possibilities for a test: […]

      Thanks. Went the easier route as I couldn't find the fake IPC (mojo?) calls you were referring to in ContentScriptTrackerBrowserTest.

    • Poking through some callsites here, it didn't _seem_ like we ever killed the renderer if the result […]

      I believe your analysis is correct. We should probably do that.

To view, visit change 3803699. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: chromium/src
Gerrit-Branch: main
Gerrit-Change-Id: I39c30603ae8883d84f552f3ba6d86c5dd587f59b
Gerrit-Change-Number: 3803699
Gerrit-PatchSet: 1
Gerrit-Owner: Evan Stade <est...@chromium.org>
Gerrit-Reviewer: Adrian Taylor <adet...@chromium.org>
Gerrit-Reviewer: Devlin Cronin <rdevlin...@chromium.org>
Gerrit-Reviewer: Evan Stade <est...@chromium.org>
Gerrit-CC: Ajay Rahatekar <ajayra...@google.com>
Gerrit-CC: Łukasz Anforowicz <luk...@chromium.org>
Gerrit-Attention: Adrian Taylor <adet...@chromium.org>
Gerrit-Attention: Devlin Cronin <rdevlin...@chromium.org>
Gerrit-Comment-Date: Thu, 04 Aug 2022 23:42:56 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: Devlin Cronin <rdevlin...@chromium.org>

Devlin Cronin (Gerrit)

unread,
Aug 5, 2022, 7:42:45 PM8/5/22
to Evan Stade, ajayra...@chromium.org, chromium-a...@chromium.org, extension...@chromium.org, Devlin Cronin, Łukasz Anforowicz, Ajay Rahatekar, Adrian Taylor, Chromium LUCI CQ, chromium...@chromium.org

Attention is currently required from: Adrian Taylor, Evan Stade.

Patch set 3:Code-Review +1

View Change

4 comments:

  • Patchset:

    • Patch Set #3:

      Thanks, Evan! LGTM % a comment about the test (hopefully the code pasted mostly works - I haven't compiled or ran it, but it should be a good jumping off point).

  • File chrome/browser/chrome_content_browser_client.cc:

    • Patch Set #3, Line 6308:

      an
      // extension content script.

      nit: "// ... a content script from an extension with clipboard permission."

  • File chrome/browser/extensions/extension_dom_clipboard_apitest.cc:

    • Patch Set #3, Line 131: LoadExtension(test_data_dir_.AppendASCII("clipboard/extension"));

      Hmm... I think this is probably racy. Assuming the new code in the client is correct, this test would only pass if the extension finishes injecting all of the content scripts by the time LoadExtension() returns, which isn't really guaranteed. The extension also does a bunch of other work (it's its own API test).

      I think we can simplify this a bit to have a more concentrated extension. Let's do something like:

      ```
      ASSERT_TRUE(StartEmbeddedTestServer());
      content::RenderFrameHost* rfh = ui_test_utils::NavigateToURL(
      browser(), embedded_test_server()->GetURL("/english_page.html"));
      // No extensions are installed. Clipboard access should be disallowed.
      EXPECT_FALSE(
      content::GetContentClientForTesting()->browser()
      ->IsClipboardPasteAllowed(rfh));
      static constexpr char kManifest[] =
      R"({
      "name": "Ext",
      "manifest_version": 3,
      "version": "1",
      "background": {"service_worker": "background.js"},
      "permissions": ["scripting"],
      "host_permissions": ["<all_urls>"]
      }");
      TestExtensionDir test_dir;
      test_dir.WriteManifest(kManifest);
      test_dir.WriteFile(FILE_PATH_LITERAL("background.js"), "// Blank");

      const Extension* extension = LoadExtension(test_dir.UnpackedPath());
      ASSERT_TRUE(extension);

      // Even with an extension installed, clipboard access is disallowed for
      // the page.
      EXPECT_FALSE(
      content::GetContentClientForTesting()->browser()
      ->IsClipboardPasteAllowed(rfh));
      // Inject a script on the page through the extension.
      static constexpr char kScript[] =
      R"((async () => {
      let tabs = await chrome.tabs.query({active: true});
      await chrome.scripting.executeScript(
      {target: {tabId: tabs[0].id}},
      func: function() {});
      chrome.test.sendScriptResult('done');
      })();
      // This will execute the script and wait for it to complete, ensuring
      // the browser is aware of the executing content script.
      BackgroundScriptExecutor::ExecuteScript(
      profile(), extension->id(), kScript,
      BackgroundScriptExecutor::ResultCapture::kSendScriptResult);
      // Now the page should have access to the clipboard.
      EXPECT_TRUE(
      content::GetContentClientForTesting()->browser()
      ->IsClipboardPasteAllowed(rfh));
      ```

      I know this is a lot more code than what's here, but it should be significantly less flaky and also gives us a little bit more coverage.

  • File extensions/browser/content_script_tracker.h:

    • nit: s/GetContentScriptsRun/GetExtensionsThatRanScripts or similar. […]

      Done

To view, visit change 3803699. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: chromium/src
Gerrit-Branch: main
Gerrit-Change-Id: I39c30603ae8883d84f552f3ba6d86c5dd587f59b
Gerrit-Change-Number: 3803699
Gerrit-PatchSet: 3
Gerrit-Owner: Evan Stade <est...@chromium.org>
Gerrit-Reviewer: Adrian Taylor <adet...@chromium.org>
Gerrit-Reviewer: Devlin Cronin <rdevlin...@chromium.org>
Gerrit-Reviewer: Evan Stade <est...@chromium.org>
Gerrit-CC: Ajay Rahatekar <ajayra...@google.com>
Gerrit-CC: Łukasz Anforowicz <luk...@chromium.org>
Gerrit-Attention: Adrian Taylor <adet...@chromium.org>
Gerrit-Attention: Evan Stade <est...@chromium.org>
Gerrit-Comment-Date: Fri, 05 Aug 2022 23:42:28 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: Yes
Comment-In-Reply-To: Devlin Cronin <rdevlin...@chromium.org>
Gerrit-MessageType: comment

Evan Stade (Gerrit)

unread,
Aug 5, 2022, 9:27:00 PM8/5/22
to ajayra...@chromium.org, chromium-a...@chromium.org, extension...@chromium.org, Devlin Cronin, Łukasz Anforowicz, Ajay Rahatekar, Adrian Taylor, Chromium LUCI CQ, chromium...@chromium.org

Attention is currently required from: Adrian Taylor.

View Change

3 comments:

  • File chrome/browser/chrome_content_browser_client.cc:

    • nit: "// ... a content script from an extension with clipboard permission. […]

      Done

  • File chrome/browser/extensions/extension_dom_clipboard_apitest.cc:

    • Hmm... I think this is probably racy. […]

      thanks for the code. Updated.

      (pretty much perfect save one pesky misplaced curly brace that failed to spur any helpful error logs)

  • File extensions/browser/content_script_tracker.h:

    • Patch Set #1, Line 59: GetContentScriptsRunInProcess

      nit: s/GetContentScriptsRun/GetExtensionsThatRanScripts or similar. […]

    • oops, missed this comment. Done.

To view, visit change 3803699. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: chromium/src
Gerrit-Branch: main
Gerrit-Change-Id: I39c30603ae8883d84f552f3ba6d86c5dd587f59b
Gerrit-Change-Number: 3803699
Gerrit-PatchSet: 3
Gerrit-Owner: Evan Stade <est...@chromium.org>
Gerrit-Reviewer: Adrian Taylor <adet...@chromium.org>
Gerrit-Reviewer: Devlin Cronin <rdevlin...@chromium.org>
Gerrit-Reviewer: Evan Stade <est...@chromium.org>
Gerrit-CC: Ajay Rahatekar <ajayra...@google.com>
Gerrit-CC: Łukasz Anforowicz <luk...@chromium.org>
Gerrit-Attention: Adrian Taylor <adet...@chromium.org>
Gerrit-Comment-Date: Sat, 06 Aug 2022 01:26:49 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No

Evan Stade (Gerrit)

unread,
Aug 9, 2022, 1:01:39 AM8/9/22
to ajayra...@chromium.org, chromium-a...@chromium.org, extension...@chromium.org, Devlin Cronin, Łukasz Anforowicz, Ajay Rahatekar, Adrian Taylor, Chromium LUCI CQ, chromium...@chromium.org

Attention is currently required from: Adrian Taylor, Devlin Cronin.

Patch set 4:Auto-Submit +1Commit-Queue +1

View Change

1 comment:

  • Patchset:

    • Patch Set #4:

      gerrit seems to be having issues --- it can't see your +1, Devlin. Can you try pressing the button again?

To view, visit change 3803699. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: chromium/src
Gerrit-Branch: main
Gerrit-Change-Id: I39c30603ae8883d84f552f3ba6d86c5dd587f59b
Gerrit-Change-Number: 3803699
Gerrit-PatchSet: 4
Gerrit-Owner: Evan Stade <est...@chromium.org>
Gerrit-Reviewer: Adrian Taylor <adet...@chromium.org>
Gerrit-Reviewer: Devlin Cronin <rdevlin...@chromium.org>
Gerrit-Reviewer: Evan Stade <est...@chromium.org>
Gerrit-CC: Ajay Rahatekar <ajayra...@google.com>
Gerrit-CC: Łukasz Anforowicz <luk...@chromium.org>
Gerrit-Attention: Adrian Taylor <adet...@chromium.org>
Gerrit-Attention: Devlin Cronin <rdevlin...@chromium.org>
Gerrit-Comment-Date: Tue, 09 Aug 2022 05:01:28 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment

Devlin Cronin (Gerrit)

unread,
Aug 9, 2022, 8:50:27 PM8/9/22
to Evan Stade, ajayra...@chromium.org, chromium-a...@chromium.org, extension...@chromium.org, Devlin Cronin, Łukasz Anforowicz, Ajay Rahatekar, Adrian Taylor, Chromium LUCI CQ, chromium...@chromium.org

Attention is currently required from: Adrian Taylor, Evan Stade.

Patch set 4:Code-Review +1

View Change

5 comments:

  • Patchset:

    • Patch Set #4:

      gerrit seems to be having issues --- it can't see your +1, Devlin. […]

      I think this might have been because the file list changed - IIRC, we're doing that now to make sure no one makes _too_ drastic of changes after stamps.

    • Patch Set #4:

      s lgtm % nits. Thanks, Evan!

  • File chrome/browser/chrome_content_browser_client.cc:

    • I believe your analysis is correct. We should probably do that.

    • Is there a bug filed? If not, mind doing that? (not sure who the right owner would be, but if it's not you or someone on your team, lukasza@ would be able to help triage)

  • File chrome/browser/extensions/extension_dom_clipboard_apitest.cc:

    • Patch Set #4, Line 149: test_dir.WriteFile(FILE_PATH_LITERAL("background.js"), "console.log('loaded');");

      nit: git cl format (line over 80 chars)

  • File extensions/browser/background_script_executor.cc:

To view, visit change 3803699. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: chromium/src
Gerrit-Branch: main
Gerrit-Change-Id: I39c30603ae8883d84f552f3ba6d86c5dd587f59b
Gerrit-Change-Number: 3803699
Gerrit-PatchSet: 4
Gerrit-Owner: Evan Stade <est...@chromium.org>
Gerrit-Reviewer: Adrian Taylor <adet...@chromium.org>
Gerrit-Reviewer: Devlin Cronin <rdevlin...@chromium.org>
Gerrit-Reviewer: Evan Stade <est...@chromium.org>
Gerrit-CC: Ajay Rahatekar <ajayra...@google.com>
Gerrit-CC: Łukasz Anforowicz <luk...@chromium.org>
Gerrit-Attention: Adrian Taylor <adet...@chromium.org>
Gerrit-Attention: Evan Stade <est...@chromium.org>
Gerrit-Comment-Date: Wed, 10 Aug 2022 00:50:11 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: Yes

Evan Stade (Gerrit)

unread,
Aug 10, 2022, 11:19:40 AM8/10/22
to ajayra...@chromium.org, chromium-a...@chromium.org, extension...@chromium.org, Devlin Cronin, Łukasz Anforowicz, Ajay Rahatekar, Adrian Taylor, Chromium LUCI CQ, chromium...@chromium.org

Attention is currently required from: Adrian Taylor.

Patch set 4:Commit-Queue +2

View Change

4 comments:

    • Is there a bug filed? If not, mind doing that? (not sure who the right owner would be, but if it's […]

      filed crbug.com/1351753

  • File chrome/browser/extensions/extension_dom_clipboard_apitest.cc:

    • Patch Set #4, Line 149: test_dir.WriteFile(FILE_PATH_LITERAL("background.js"), "console.log('loaded');");

      nit: git cl format (line over 80 chars)

    • wonder how I managed to upload this... reverted to " // blank".

  • File extensions/browser/background_script_executor.cc:

    • Done

To view, visit change 3803699. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: chromium/src
Gerrit-Branch: main
Gerrit-Change-Id: I39c30603ae8883d84f552f3ba6d86c5dd587f59b
Gerrit-Change-Number: 3803699
Gerrit-PatchSet: 4
Gerrit-Owner: Evan Stade <est...@chromium.org>
Gerrit-Reviewer: Adrian Taylor <adet...@chromium.org>
Gerrit-Reviewer: Devlin Cronin <rdevlin...@chromium.org>
Gerrit-Reviewer: Evan Stade <est...@chromium.org>
Gerrit-CC: Ajay Rahatekar <ajayra...@google.com>
Gerrit-CC: Łukasz Anforowicz <luk...@chromium.org>
Gerrit-Attention: Adrian Taylor <adet...@chromium.org>
Gerrit-Comment-Date: Wed, 10 Aug 2022 15:19:26 +0000

Devlin Cronin (Gerrit)

unread,
Aug 10, 2022, 9:03:34 PM8/10/22
to Evan Stade, ajayra...@chromium.org, chromium-a...@chromium.org, extension...@chromium.org, Devlin Cronin, Łukasz Anforowicz, Ajay Rahatekar, Adrian Taylor, Chromium LUCI CQ, chromium...@chromium.org

Attention is currently required from: Adrian Taylor, Evan Stade.

Patch set 5:Code-Review +1Commit-Queue +2

View Change

1 comment:

To view, visit change 3803699. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: chromium/src
Gerrit-Branch: main
Gerrit-Change-Id: I39c30603ae8883d84f552f3ba6d86c5dd587f59b
Gerrit-Change-Number: 3803699
Gerrit-PatchSet: 5
Gerrit-Owner: Evan Stade <est...@chromium.org>
Gerrit-Reviewer: Adrian Taylor <adet...@chromium.org>
Gerrit-Reviewer: Devlin Cronin <rdevlin...@chromium.org>
Gerrit-Reviewer: Evan Stade <est...@chromium.org>
Gerrit-CC: Ajay Rahatekar <ajayra...@google.com>
Gerrit-CC: Łukasz Anforowicz <luk...@chromium.org>
Gerrit-Attention: Adrian Taylor <adet...@chromium.org>
Gerrit-Attention: Evan Stade <est...@chromium.org>
Gerrit-Comment-Date: Thu, 11 Aug 2022 01:03:23 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment

Chromium LUCI CQ (Gerrit)

unread,
Aug 10, 2022, 10:03:01 PM8/10/22
to Evan Stade, ajayra...@chromium.org, chromium-a...@chromium.org, extension...@chromium.org, Devlin Cronin, Łukasz Anforowicz, Ajay Rahatekar, Adrian Taylor, chromium...@chromium.org

Chromium LUCI CQ submitted this change.

View Change


Approvals: Devlin Cronin: Looks good to me; Commit Evan Stade: Send CL to CQ automatically after approval
Disallow clipboard reading for certain renderers

In order to thwart compromised renderers gaining access to user
clipboard contents, limit clipboard reading to renderers where the read
request may have come from an extension content script (or a couple
other cases). This has no effect on Android, where the browser process
already knew that the request couldn't have come from a content script
since Android has no extensions.

There are a couple other exceptions that allow the clipboard to be
accessed, which were already in place before this patch:

* user activation
* web API permission

Bug: 1051198
Change-Id: I39c30603ae8883d84f552f3ba6d86c5dd587f59b
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3803699
Auto-Submit: Evan Stade <est...@chromium.org>
Commit-Queue: Devlin Cronin <rdevlin...@chromium.org>
Reviewed-by: Devlin Cronin <rdevlin...@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1033826}
---
M chrome/browser/chrome_content_browser_client.cc
M chrome/browser/extensions/extension_dom_clipboard_apitest.cc
M extensions/browser/content_script_tracker.cc
M extensions/browser/content_script_tracker.h
4 files changed, 143 insertions(+), 28 deletions(-)


To view, visit change 3803699. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: chromium/src
Gerrit-Branch: main
Gerrit-Change-Id: I39c30603ae8883d84f552f3ba6d86c5dd587f59b
Gerrit-Change-Number: 3803699
Gerrit-PatchSet: 6
Gerrit-Owner: Evan Stade <est...@chromium.org>
Gerrit-Reviewer: Adrian Taylor <adet...@chromium.org>
Gerrit-Reviewer: Chromium LUCI CQ <chromiu...@luci-project-accounts.iam.gserviceaccount.com>
Gerrit-Reviewer: Devlin Cronin <rdevlin...@chromium.org>
Gerrit-Reviewer: Evan Stade <est...@chromium.org>
Gerrit-CC: Ajay Rahatekar <ajayra...@google.com>
Gerrit-CC: Łukasz Anforowicz <luk...@chromium.org>
Gerrit-MessageType: merged

Łukasz Anforowicz (Gerrit)

unread,
Aug 13, 2022, 8:55:35 AM8/13/22
to Chromium LUCI CQ, Evan Stade, ajayra...@chromium.org, chromium-a...@chromium.org, extension...@chromium.org, Devlin Cronin, Ajay Rahatekar, Adrian Taylor, chromium...@chromium.org

View Change

1 comment:

  • File chrome/browser/chrome_content_browser_client.cc:

    • I couldn't find the fake IPC (mojo?) calls you were referring to in ContentScriptTrackerBrowserTest.

      You can take a look at
      //chrome/browser/extensions/extension_security_exploit_browsertest.cc - look how tests use RenderProcessHostBadIpcMessageWaiter and RenderProcessHostBadIpcMessageWaiter. I am not sure how easy-or-difficult it is to intercept the clipboard-related messages (the tests in extension_security_exploit_browsertest.cc have examples both for mojo and legacy IPC, but I am not sure if this approach can be easily copied to other messages).

To view, visit change 3803699. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: chromium/src
Gerrit-Branch: main
Gerrit-Change-Id: I39c30603ae8883d84f552f3ba6d86c5dd587f59b
Gerrit-Change-Number: 3803699
Gerrit-PatchSet: 6
Gerrit-Owner: Evan Stade <est...@chromium.org>
Gerrit-Reviewer: Adrian Taylor <adet...@chromium.org>
Gerrit-Reviewer: Chromium LUCI CQ <chromiu...@luci-project-accounts.iam.gserviceaccount.com>
Gerrit-Reviewer: Devlin Cronin <rdevlin...@chromium.org>
Gerrit-Reviewer: Evan Stade <est...@chromium.org>
Gerrit-CC: Ajay Rahatekar <ajayra...@google.com>
Gerrit-CC: Łukasz Anforowicz <luk...@chromium.org>
Gerrit-Comment-Date: Sat, 13 Aug 2022 12:55:24 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Reply all
Reply to author
Forward
0 new messages