[DevTools] Upgrade Security Origin Panel to MD [chromium/src : master]

0 views
Skip to first unread message

Sarah Chan (Gerrit)

unread,
Dec 13, 2017, 5:30:02 PM12/13/17
to apavlo...@chromium.org, blink-...@chromium.org, caseq...@chromium.org, kozyatins...@chromium.org, lushnik...@chromium.org, pfeldma...@chromium.org, Eric Lawrence, Commit Bot, chromium...@chromium.org, devtools...@chromium.org, Pavel Feldman

Hey Eric,

Can you PTAL? This should be the final CL for updating the security panel to MD.
Thanks!

Sarah

View Change

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

    Gerrit-Project: chromium/src
    Gerrit-Branch: master
    Gerrit-MessageType: comment
    Gerrit-Change-Id: Ibc73636e7b809952a75efd97353805e7e72f689c
    Gerrit-Change-Number: 824952
    Gerrit-PatchSet: 5
    Gerrit-Owner: Sarah Chan <spq...@chromium.org>
    Gerrit-Reviewer: Eric Lawrence <elaw...@chromium.org>
    Gerrit-Reviewer: Sarah Chan <spq...@chromium.org>
    Gerrit-CC: Commit Bot <commi...@chromium.org>
    Gerrit-CC: Pavel Feldman <pfel...@chromium.org>
    Gerrit-Comment-Date: Wed, 13 Dec 2017 22:29:55 +0000
    Gerrit-HasComments: No
    Gerrit-HasLabels: No

    Eric Lawrence (Gerrit)

    unread,
    Dec 13, 2017, 5:56:04 PM12/13/17
    to Sarah Chan, apavlo...@chromium.org, blink-...@chromium.org, caseq...@chromium.org, kozyatins...@chromium.org, lushnik...@chromium.org, pfeldma...@chromium.org, Commit Bot, chromium...@chromium.org, devtools...@chromium.org, Pavel Feldman

    This looks good to me in general. In the screenshot, the "View Requests..." and "Open full certificate details" are both buttons.

    On Windows today, the first is a link and the latter is a button; does something in the stylesheet that I overlooked change them both to buttons for Windows too?

    Patch set 5:Code-Review +1

    View Change

    3 comments:

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

    Gerrit-Project: chromium/src
    Gerrit-Branch: master
    Gerrit-MessageType: comment
    Gerrit-Change-Id: Ibc73636e7b809952a75efd97353805e7e72f689c
    Gerrit-Change-Number: 824952
    Gerrit-PatchSet: 5
    Gerrit-Owner: Sarah Chan <spq...@chromium.org>
    Gerrit-Reviewer: Eric Lawrence <elaw...@chromium.org>
    Gerrit-Reviewer: Sarah Chan <spq...@chromium.org>
    Gerrit-CC: Commit Bot <commi...@chromium.org>
    Gerrit-CC: Pavel Feldman <pfel...@chromium.org>
    Gerrit-Comment-Date: Wed, 13 Dec 2017 22:56:00 +0000
    Gerrit-HasComments: Yes
    Gerrit-HasLabels: Yes

    Sarah Chan (Gerrit)

    unread,
    Dec 13, 2017, 7:07:27 PM12/13/17
    to apavlo...@chromium.org, blink-...@chromium.org, caseq...@chromium.org, kozyatins...@chromium.org, lushnik...@chromium.org, pfeldma...@chromium.org, Eric Lawrence, Commit Bot, chromium...@chromium.org, devtools...@chromium.org, Pavel Feldman

    Patch Set 5: Code-Review+1

    (3 comments)

    This looks good to me in general. In the screenshot, the "View Requests..." and "Open full certificate details" are both buttons.

    On Windows today, the first is a link and the latter is a button; does something in the stylesheet that I overlooked change them both to buttons for Windows too?

    Thanks Eric! No, the CSS doesn't change them both to buttons. I modified SecurityPanel.js so that it will display a button instead of a link.

    View Change

    3 comments:

      • Patch Set #5, Line 59:

        <#document-fragment >
        <STYLE type=text/css >
        </STYLE>
        <STYLE type=text/css >
        </STYLE>
        <STYLE type=text/css >
        </STYLE>
        <CONTENT >
        </CONTENT>
        </#document-fragment>

        I don't understand where this content is coming from.

      • For my own education: Why do we use "async e" here but only "e" in the similar function createCertif […]

        I suspect it's because of this:
        var names = await SDK.multitargetNetworkManager.getCertificate(origin)

        createCertificateViewerButtonForCert receives the name in the param, while createCertificateViewerButtonForOrigin needs to retrieve the name from the origin

        Now that you mentioned it, I don't think the async for originNetworkButton is necessary. I removed it

      • Patch Set #5, Line 881: noteSection.createChild('div').textContent =

        Can you either remove this line (since I seriously doubt we're ever going to make a change here) or […]

        Done

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

    Gerrit-Project: chromium/src
    Gerrit-Branch: master
    Gerrit-MessageType: comment
    Gerrit-Change-Id: Ibc73636e7b809952a75efd97353805e7e72f689c
    Gerrit-Change-Number: 824952
    Gerrit-PatchSet: 6
    Gerrit-Owner: Sarah Chan <spq...@chromium.org>
    Gerrit-Reviewer: Eric Lawrence <elaw...@chromium.org>
    Gerrit-Reviewer: Sarah Chan <spq...@chromium.org>
    Gerrit-CC: Commit Bot <commi...@chromium.org>
    Gerrit-CC: Pavel Feldman <pfel...@chromium.org>
    Gerrit-Comment-Date: Thu, 14 Dec 2017 00:07:23 +0000
    Gerrit-HasComments: Yes
    Gerrit-HasLabels: No

    Eric Lawrence (Gerrit)

    unread,
    Dec 14, 2017, 11:15:29 AM12/14/17
    to Sarah Chan, apavlo...@chromium.org, blink-...@chromium.org, caseq...@chromium.org, kozyatins...@chromium.org, lushnik...@chromium.org, pfeldma...@chromium.org, Commit Bot, chromium...@chromium.org, devtools...@chromium.org, Pavel Feldman

    Thanks!

    View Change

    2 comments:

      • Patch Set #5, Line 59:

        <#document-fragment >
        <STYLE type=text/css >
        </STYLE>
        <STYLE type=text/css >
        </STYLE>
        <STYLE type=text/css >
        </STYLE>
        <CONTENT >
        </CONTENT>
        </#document-fragment>

      • I suspect it's because of this: […]

        Oh, interesting. I haven't looked at the async/await stuff in JavaScript before but I do recall in C# that you have to have async if you want to use await in the body.

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

    Gerrit-Project: chromium/src
    Gerrit-Branch: master
    Gerrit-MessageType: comment
    Gerrit-Change-Id: Ibc73636e7b809952a75efd97353805e7e72f689c
    Gerrit-Change-Number: 824952
    Gerrit-PatchSet: 6
    Gerrit-Owner: Sarah Chan <spq...@chromium.org>
    Gerrit-Reviewer: Eric Lawrence <elaw...@chromium.org>
    Gerrit-Reviewer: Sarah Chan <spq...@chromium.org>
    Gerrit-CC: Commit Bot <commi...@chromium.org>
    Gerrit-CC: Pavel Feldman <pfel...@chromium.org>
    Gerrit-Comment-Date: Thu, 14 Dec 2017 16:15:25 +0000
    Gerrit-HasComments: Yes
    Gerrit-HasLabels: No

    Sarah Chan (Gerrit)

    unread,
    Dec 14, 2017, 12:24:42 PM12/14/17
    to Dmitry Gozman, apavlo...@chromium.org, blink-...@chromium.org, caseq...@chromium.org, kozyatins...@chromium.org, lushnik...@chromium.org, pfeldma...@chromium.org, Eric Lawrence

    Sarah Chan would like Dmitry Gozman to review this change.

    View Change

    [DevTools] Upgrade Security Origin Panel to MD

    Update the DevTools Security Origin Page to MD.

    Screenshot: https://screenshot.googleplex.com/jVEM0iFFMkj

    Bug:617311
    Change-Id: Ibc73636e7b809952a75efd97353805e7e72f689c
    ---
    M third_party/WebKit/LayoutTests/http/tests/devtools/security/origin-view-then-interstitial-expected.txt
    M third_party/WebKit/LayoutTests/http/tests/devtools/security/security-details-updated-with-security-state-expected.txt
    M third_party/WebKit/Source/devtools/front_end/security/SecurityPanel.js
    M third_party/WebKit/Source/devtools/front_end/security/originView.css
    4 files changed, 91 insertions(+), 27 deletions(-)


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

    Gerrit-Project: chromium/src
    Gerrit-Branch: master
    Gerrit-MessageType: newchange
    Gerrit-Change-Id: Ibc73636e7b809952a75efd97353805e7e72f689c
    Gerrit-Change-Number: 824952
    Gerrit-PatchSet: 6
    Gerrit-Owner: Sarah Chan <spq...@chromium.org>
    Gerrit-Reviewer: Dmitry Gozman <dgo...@chromium.org>

    Sarah Chan (Gerrit)

    unread,
    Dec 14, 2017, 12:24:43 PM12/14/17
    to apavlo...@chromium.org, blink-...@chromium.org, caseq...@chromium.org, kozyatins...@chromium.org, lushnik...@chromium.org, pfeldma...@chromium.org, Dmitry Gozman, Eric Lawrence, Commit Bot, chromium...@chromium.org, devtools...@chromium.org, Pavel Feldman

    Hello Dmitry,

    Can you PTAL? This should be my final CL for upgrading the Security panel to MD.
    Thanks!

    Sarah

    View Change

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

      Gerrit-Project: chromium/src
      Gerrit-Branch: master
      Gerrit-MessageType: comment
      Gerrit-Change-Id: Ibc73636e7b809952a75efd97353805e7e72f689c
      Gerrit-Change-Number: 824952
      Gerrit-PatchSet: 6
      Gerrit-Owner: Sarah Chan <spq...@chromium.org>
      Gerrit-Reviewer: Dmitry Gozman <dgo...@chromium.org>
      Gerrit-Reviewer: Eric Lawrence <elaw...@chromium.org>
      Gerrit-Reviewer: Sarah Chan <spq...@chromium.org>
      Gerrit-CC: Commit Bot <commi...@chromium.org>
      Gerrit-CC: Pavel Feldman <pfel...@chromium.org>
      Gerrit-Comment-Date: Thu, 14 Dec 2017 17:24:35 +0000
      Gerrit-HasComments: No
      Gerrit-HasLabels: No

      Dmitry Gozman (Gerrit)

      unread,
      Dec 15, 2017, 7:13:38 PM12/15/17
      to Sarah Chan, apavlo...@chromium.org, blink-...@chromium.org, caseq...@chromium.org, kozyatins...@chromium.org, lushnik...@chromium.org, pfeldma...@chromium.org, Eric Lawrence, Commit Bot, chromium...@chromium.org, devtools...@chromium.org, Pavel Feldman

      Patch set 6:Code-Review +1

      View Change

      1 comment:

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

      Gerrit-Project: chromium/src
      Gerrit-Branch: master
      Gerrit-MessageType: comment
      Gerrit-Change-Id: Ibc73636e7b809952a75efd97353805e7e72f689c
      Gerrit-Change-Number: 824952
      Gerrit-PatchSet: 6
      Gerrit-Owner: Sarah Chan <spq...@chromium.org>
      Gerrit-Reviewer: Dmitry Gozman <dgo...@chromium.org>
      Gerrit-Reviewer: Eric Lawrence <elaw...@chromium.org>
      Gerrit-Reviewer: Sarah Chan <spq...@chromium.org>
      Gerrit-CC: Commit Bot <commi...@chromium.org>
      Gerrit-CC: Pavel Feldman <pfel...@chromium.org>
      Gerrit-Comment-Date: Sat, 16 Dec 2017 00:13:29 +0000
      Gerrit-HasComments: Yes
      Gerrit-HasLabels: Yes

      Sarah Chan (Gerrit)

      unread,
      Dec 15, 2017, 7:33:45 PM12/15/17
      to apavlo...@chromium.org, blink-...@chromium.org, caseq...@chromium.org, kozyatins...@chromium.org, lushnik...@chromium.org, pfeldma...@chromium.org, Dmitry Gozman, Eric Lawrence, Commit Bot, chromium...@chromium.org, devtools...@chromium.org, Pavel Feldman

      View Change

      1 comment:

        • I don't think so. What is the process for localization in DevTools?

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

      Gerrit-Project: chromium/src
      Gerrit-Branch: master
      Gerrit-MessageType: comment
      Gerrit-Change-Id: Ibc73636e7b809952a75efd97353805e7e72f689c
      Gerrit-Change-Number: 824952
      Gerrit-PatchSet: 6
      Gerrit-Owner: Sarah Chan <spq...@chromium.org>
      Gerrit-Reviewer: Dmitry Gozman <dgo...@chromium.org>
      Gerrit-Reviewer: Eric Lawrence <elaw...@chromium.org>
      Gerrit-Reviewer: Sarah Chan <spq...@chromium.org>
      Gerrit-CC: Commit Bot <commi...@chromium.org>
      Gerrit-CC: Pavel Feldman <pfel...@chromium.org>
      Gerrit-Comment-Date: Sat, 16 Dec 2017 00:33:42 +0000
      Gerrit-HasComments: Yes
      Gerrit-HasLabels: No

      Dmitry Gozman (Gerrit)

      unread,
      Dec 15, 2017, 7:50:20 PM12/15/17
      to Sarah Chan, apavlo...@chromium.org, blink-...@chromium.org, caseq...@chromium.org, kozyatins...@chromium.org, lushnik...@chromium.org, pfeldma...@chromium.org, Eric Lawrence, Commit Bot, chromium...@chromium.org, devtools...@chromium.org, Pavel Feldman

      View Change

      1 comment:

        • I don't think so. […]

          There is no localization yet, but we mark all UI strings with ls`my string` (previously Common.UIString) for future possibility.

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

      Gerrit-Project: chromium/src
      Gerrit-Branch: master
      Gerrit-MessageType: comment
      Gerrit-Change-Id: Ibc73636e7b809952a75efd97353805e7e72f689c
      Gerrit-Change-Number: 824952
      Gerrit-PatchSet: 6
      Gerrit-Owner: Sarah Chan <spq...@chromium.org>
      Gerrit-Reviewer: Dmitry Gozman <dgo...@chromium.org>
      Gerrit-Reviewer: Eric Lawrence <elaw...@chromium.org>
      Gerrit-Reviewer: Sarah Chan <spq...@chromium.org>
      Gerrit-CC: Commit Bot <commi...@chromium.org>
      Gerrit-CC: Pavel Feldman <pfel...@chromium.org>
      Gerrit-Comment-Date: Sat, 16 Dec 2017 00:50:17 +0000
      Gerrit-HasComments: Yes
      Gerrit-HasLabels: No

      Pavel Feldman (Gerrit)

      unread,
      Dec 15, 2017, 7:51:19 PM12/15/17
      to Sarah Chan, apavlo...@chromium.org, blink-...@chromium.org, caseq...@chromium.org, kozyatins...@chromium.org, lushnik...@chromium.org, pfeldma...@chromium.org, Dmitry Gozman, Eric Lawrence, Commit Bot, chromium...@chromium.org, devtools...@chromium.org

      View Change

      1 comment:

        • You now need to template all user readable strings as ls`Origin` in DevTools. Previously we were using UIString() for that.

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

      Gerrit-Project: chromium/src
      Gerrit-Branch: master
      Gerrit-MessageType: comment
      Gerrit-Change-Id: Ibc73636e7b809952a75efd97353805e7e72f689c
      Gerrit-Change-Number: 824952
      Gerrit-PatchSet: 6
      Gerrit-Owner: Sarah Chan <spq...@chromium.org>
      Gerrit-Reviewer: Dmitry Gozman <dgo...@chromium.org>
      Gerrit-Reviewer: Eric Lawrence <elaw...@chromium.org>
      Gerrit-Reviewer: Sarah Chan <spq...@chromium.org>
      Gerrit-CC: Commit Bot <commi...@chromium.org>
      Gerrit-CC: Pavel Feldman <pfel...@chromium.org>
      Gerrit-Comment-Date: Sat, 16 Dec 2017 00:51:17 +0000
      Gerrit-HasComments: Yes
      Gerrit-HasLabels: No

      Sarah Chan (Gerrit)

      unread,
      Dec 15, 2017, 9:19:24 PM12/15/17
      to apavlo...@chromium.org, blink-...@chromium.org, caseq...@chromium.org, kozyatins...@chromium.org, lushnik...@chromium.org, pfeldma...@chromium.org, Dmitry Gozman, Eric Lawrence, Commit Bot, chromium...@chromium.org, devtools...@chromium.org, Pavel Feldman

      View Change

      1 comment:

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

      Gerrit-Project: chromium/src
      Gerrit-Branch: master
      Gerrit-MessageType: comment
      Gerrit-Change-Id: Ibc73636e7b809952a75efd97353805e7e72f689c
      Gerrit-Change-Number: 824952
      Gerrit-PatchSet: 8
      Gerrit-Owner: Sarah Chan <spq...@chromium.org>
      Gerrit-Reviewer: Dmitry Gozman <dgo...@chromium.org>
      Gerrit-Reviewer: Eric Lawrence <elaw...@chromium.org>
      Gerrit-Reviewer: Sarah Chan <spq...@chromium.org>
      Gerrit-CC: Commit Bot <commi...@chromium.org>
      Gerrit-CC: Pavel Feldman <pfel...@chromium.org>
      Gerrit-Comment-Date: Sat, 16 Dec 2017 02:19:18 +0000
      Gerrit-HasComments: Yes
      Gerrit-HasLabels: No

      Eric Lawrence (Gerrit)

      unread,
      Dec 18, 2017, 3:48:08 PM12/18/17
      to Sarah Chan, apavlo...@chromium.org, blink-...@chromium.org, caseq...@chromium.org, kozyatins...@chromium.org, lushnik...@chromium.org, pfeldma...@chromium.org, Dmitry Gozman, Commit Bot, chromium...@chromium.org, devtools...@chromium.org, Pavel Feldman

      Patch Set 8:

      (1 comment)

      I think the suggestion is that Common.UIString("foo") is now deprecated and the new thing to do is

          ls`foo`

      As seen in, e.g. https://cs.chromium.org/chromium/src/third_party/WebKit/Source/devtools/front_end/accessibility/AccessibilityNodeView.js?l=13&rcl=3335d106b17e8ba97b732e0b07e08171f18ef640

      View Change

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

        Gerrit-Project: chromium/src
        Gerrit-Branch: master
        Gerrit-MessageType: comment
        Gerrit-Change-Id: Ibc73636e7b809952a75efd97353805e7e72f689c
        Gerrit-Change-Number: 824952
        Gerrit-PatchSet: 8
        Gerrit-Owner: Sarah Chan <spq...@chromium.org>
        Gerrit-Reviewer: Dmitry Gozman <dgo...@chromium.org>
        Gerrit-Reviewer: Eric Lawrence <elaw...@chromium.org>
        Gerrit-Reviewer: Sarah Chan <spq...@chromium.org>
        Gerrit-CC: Commit Bot <commi...@chromium.org>
        Gerrit-CC: Pavel Feldman <pfel...@chromium.org>
        Gerrit-Comment-Date: Mon, 18 Dec 2017 20:48:06 +0000
        Gerrit-HasComments: No
        Gerrit-HasLabels: No

        Sarah Chan (Gerrit)

        unread,
        Dec 18, 2017, 10:27:02 PM12/18/17
        to apavlo...@chromium.org, blink-...@chromium.org, caseq...@chromium.org, kozyatins...@chromium.org, lushnik...@chromium.org, pfeldma...@chromium.org, Eric Lawrence, Dmitry Gozman, Commit Bot, chromium...@chromium.org, devtools...@chromium.org, Pavel Feldman

        Patch Set 8:

        Patch Set 8:

        (1 comment)

        I think the suggestion is that Common.UIString("foo") is now deprecated and the new thing to do is

            ls`foo`

        As seen in, e.g. https://cs.chromium.org/chromium/src/third_party/WebKit/Source/devtools/front_end/accessibility/AccessibilityNodeView.js?l=13&rcl=3335d106b17e8ba97b732e0b07e08171f18ef640

        Thanks Eric!

        View Change

        1 comment:

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

        Gerrit-Project: chromium/src
        Gerrit-Branch: master
        Gerrit-MessageType: comment
        Gerrit-Change-Id: Ibc73636e7b809952a75efd97353805e7e72f689c
        Gerrit-Change-Number: 824952
        Gerrit-PatchSet: 9
        Gerrit-Owner: Sarah Chan <spq...@chromium.org>
        Gerrit-Reviewer: Dmitry Gozman <dgo...@chromium.org>
        Gerrit-Reviewer: Eric Lawrence <elaw...@chromium.org>
        Gerrit-Reviewer: Sarah Chan <spq...@chromium.org>
        Gerrit-CC: Commit Bot <commi...@chromium.org>
        Gerrit-CC: Pavel Feldman <pfel...@chromium.org>
        Gerrit-Comment-Date: Tue, 19 Dec 2017 03:26:58 +0000
        Gerrit-HasComments: Yes
        Gerrit-HasLabels: No

        Sarah Chan (Gerrit)

        unread,
        Dec 18, 2017, 10:27:21 PM12/18/17
        to apavlo...@chromium.org, blink-...@chromium.org, caseq...@chromium.org, kozyatins...@chromium.org, lushnik...@chromium.org, pfeldma...@chromium.org, Eric Lawrence, Dmitry Gozman, Commit Bot, chromium...@chromium.org, devtools...@chromium.org, Pavel Feldman

        Patch set 9:Commit-Queue +2

        View Change

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

          Gerrit-Project: chromium/src
          Gerrit-Branch: master
          Gerrit-MessageType: comment
          Gerrit-Change-Id: Ibc73636e7b809952a75efd97353805e7e72f689c
          Gerrit-Change-Number: 824952
          Gerrit-PatchSet: 9
          Gerrit-Owner: Sarah Chan <spq...@chromium.org>
          Gerrit-Reviewer: Dmitry Gozman <dgo...@chromium.org>
          Gerrit-Reviewer: Eric Lawrence <elaw...@chromium.org>
          Gerrit-Reviewer: Sarah Chan <spq...@chromium.org>
          Gerrit-CC: Commit Bot <commi...@chromium.org>
          Gerrit-CC: Pavel Feldman <pfel...@chromium.org>
          Gerrit-Comment-Date: Tue, 19 Dec 2017 03:27:19 +0000
          Gerrit-HasComments: No
          Gerrit-HasLabels: Yes

          Commit Bot (Gerrit)

          unread,
          Dec 18, 2017, 10:27:36 PM12/18/17
          to Sarah Chan, apavlo...@chromium.org, blink-...@chromium.org, caseq...@chromium.org, kozyatins...@chromium.org, lushnik...@chromium.org, pfeldma...@chromium.org, Eric Lawrence, Dmitry Gozman, chromium...@chromium.org, devtools...@chromium.org, Pavel Feldman

          CQ is trying the patch.

          Note: The patchset sent to CQ was uploaded after this CL was approved.
          "Fix the string" https://chromium-review.googlesource.com/c/824952/9

          Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/chromium-review.googlesource.com/824952/9

          Bot data: {"action": "start", "triggered_at": "2017-12-19T03:27:19.0Z", "cq_cfg_revision": "449ceedce2207329148e0a132f0c79a46cde3381", "revision": "4becd24963dcb063f0773380fc8a449082cd94fd"}

          View Change

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

            Gerrit-Project: chromium/src
            Gerrit-Branch: master
            Gerrit-MessageType: comment
            Gerrit-Change-Id: Ibc73636e7b809952a75efd97353805e7e72f689c
            Gerrit-Change-Number: 824952
            Gerrit-PatchSet: 9
            Gerrit-Owner: Sarah Chan <spq...@chromium.org>
            Gerrit-Reviewer: Dmitry Gozman <dgo...@chromium.org>
            Gerrit-Reviewer: Eric Lawrence <elaw...@chromium.org>
            Gerrit-Reviewer: Sarah Chan <spq...@chromium.org>
            Gerrit-CC: Commit Bot <commi...@chromium.org>
            Gerrit-CC: Pavel Feldman <pfel...@chromium.org>
            Gerrit-Comment-Date: Tue, 19 Dec 2017 03:27:34 +0000
            Gerrit-HasComments: No
            Gerrit-HasLabels: No

            Commit Bot (Gerrit)

            unread,
            Dec 18, 2017, 11:36:18 PM12/18/17
            to Sarah Chan, apavlo...@chromium.org, blink-...@chromium.org, caseq...@chromium.org, kozyatins...@chromium.org, lushnik...@chromium.org, pfeldma...@chromium.org, Eric Lawrence, Dmitry Gozman, chromium...@chromium.org, devtools...@chromium.org, Pavel Feldman
            Try jobs failed on following builders:
            linux-chromeos-rel on master.tryserver.chromium.chromiumos (JOB_FAILED, https://build.chromium.org/p/tryserver.chromium.chromiumos/builders/linux-chromeos-rel/builds/26306)

            View Change

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

              Gerrit-Project: chromium/src
              Gerrit-Branch: master
              Gerrit-MessageType: comment
              Gerrit-Change-Id: Ibc73636e7b809952a75efd97353805e7e72f689c
              Gerrit-Change-Number: 824952
              Gerrit-PatchSet: 9
              Gerrit-Owner: Sarah Chan <spq...@chromium.org>
              Gerrit-Reviewer: Dmitry Gozman <dgo...@chromium.org>
              Gerrit-Reviewer: Eric Lawrence <elaw...@chromium.org>
              Gerrit-Reviewer: Sarah Chan <spq...@chromium.org>
              Gerrit-CC: Commit Bot <commi...@chromium.org>
              Gerrit-CC: Pavel Feldman <pfel...@chromium.org>
              Gerrit-Comment-Date: Tue, 19 Dec 2017 04:36:16 +0000
              Gerrit-HasComments: No
              Gerrit-HasLabels: No

              Sarah Chan (Gerrit)

              unread,
              Dec 18, 2017, 11:50:19 PM12/18/17
              to apavlo...@chromium.org, blink-...@chromium.org, caseq...@chromium.org, kozyatins...@chromium.org, lushnik...@chromium.org, pfeldma...@chromium.org, Eric Lawrence, Dmitry Gozman, Commit Bot, chromium...@chromium.org, devtools...@chromium.org, Pavel Feldman

              Patch set 9:Commit-Queue +2

              View Change

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

                Gerrit-Project: chromium/src
                Gerrit-Branch: master
                Gerrit-MessageType: comment
                Gerrit-Change-Id: Ibc73636e7b809952a75efd97353805e7e72f689c
                Gerrit-Change-Number: 824952
                Gerrit-PatchSet: 9
                Gerrit-Owner: Sarah Chan <spq...@chromium.org>
                Gerrit-Reviewer: Dmitry Gozman <dgo...@chromium.org>
                Gerrit-Reviewer: Eric Lawrence <elaw...@chromium.org>
                Gerrit-Reviewer: Sarah Chan <spq...@chromium.org>
                Gerrit-CC: Commit Bot <commi...@chromium.org>
                Gerrit-CC: Pavel Feldman <pfel...@chromium.org>
                Gerrit-Comment-Date: Tue, 19 Dec 2017 04:50:17 +0000
                Gerrit-HasComments: No
                Gerrit-HasLabels: Yes

                Commit Bot (Gerrit)

                unread,
                Dec 18, 2017, 11:50:26 PM12/18/17
                to Sarah Chan, apavlo...@chromium.org, blink-...@chromium.org, caseq...@chromium.org, kozyatins...@chromium.org, lushnik...@chromium.org, pfeldma...@chromium.org, Eric Lawrence, Dmitry Gozman, chromium...@chromium.org, devtools...@chromium.org, Pavel Feldman

                CQ is trying the patch.

                Note: The patchset sent to CQ was uploaded after this CL was approved.
                "Fix the string" https://chromium-review.googlesource.com/c/824952/9

                Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/chromium-review.googlesource.com/824952/9

                Bot data: {"action": "start", "triggered_at": "2017-12-19T04:50:17.0Z", "cq_cfg_revision": "449ceedce2207329148e0a132f0c79a46cde3381", "revision": "4becd24963dcb063f0773380fc8a449082cd94fd"}

                View Change

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

                  Gerrit-Project: chromium/src
                  Gerrit-Branch: master
                  Gerrit-MessageType: comment
                  Gerrit-Change-Id: Ibc73636e7b809952a75efd97353805e7e72f689c
                  Gerrit-Change-Number: 824952
                  Gerrit-PatchSet: 9
                  Gerrit-Owner: Sarah Chan <spq...@chromium.org>
                  Gerrit-Reviewer: Dmitry Gozman <dgo...@chromium.org>
                  Gerrit-Reviewer: Eric Lawrence <elaw...@chromium.org>
                  Gerrit-Reviewer: Sarah Chan <spq...@chromium.org>
                  Gerrit-CC: Commit Bot <commi...@chromium.org>
                  Gerrit-CC: Pavel Feldman <pfel...@chromium.org>
                  Gerrit-Comment-Date: Tue, 19 Dec 2017 04:50:24 +0000
                  Gerrit-HasComments: No
                  Gerrit-HasLabels: No

                  Commit Bot (Gerrit)

                  unread,
                  Dec 19, 2017, 1:50:48 AM12/19/17
                  to Sarah Chan, apavlo...@chromium.org, blink-...@chromium.org, caseq...@chromium.org, kozyatins...@chromium.org, lushnik...@chromium.org, pfeldma...@chromium.org, Eric Lawrence, Dmitry Gozman, chromium...@chromium.org, devtools...@chromium.org, Pavel Feldman

                  Commit Bot merged this change.

                  View Change

                  Approvals: Dmitry Gozman: Looks good to me Eric Lawrence: Looks good to me Sarah Chan: Commit
                  [DevTools] Upgrade Security Origin Panel to MD

                  Update the DevTools Security Origin Page to MD.

                  Screenshot: https://screenshot.googleplex.com/jVEM0iFFMkj

                  Bug: 617311
                  Change-Id: Ibc73636e7b809952a75efd97353805e7e72f689c
                  Reviewed-on: https://chromium-review.googlesource.com/824952
                  Commit-Queue: Sarah Chan <spq...@chromium.org>
                  Reviewed-by: Dmitry Gozman <dgo...@chromium.org>
                  Reviewed-by: Eric Lawrence <elaw...@chromium.org>
                  Cr-Commit-Position: refs/heads/master@{#524958}

                  ---
                  M third_party/WebKit/LayoutTests/http/tests/devtools/security/origin-view-then-interstitial-expected.txt
                  M third_party/WebKit/LayoutTests/http/tests/devtools/security/security-details-updated-with-security-state-expected.txt
                  M third_party/WebKit/Source/devtools/front_end/security/SecurityPanel.js
                  M third_party/WebKit/Source/devtools/front_end/security/originView.css
                  4 files changed, 91 insertions(+), 27 deletions(-)


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

                  Gerrit-Project: chromium/src
                  Gerrit-Branch: master
                  Gerrit-MessageType: merged
                  Gerrit-Change-Id: Ibc73636e7b809952a75efd97353805e7e72f689c
                  Gerrit-Change-Number: 824952
                  Gerrit-PatchSet: 10
                  Gerrit-Owner: Sarah Chan <spq...@chromium.org>
                  Gerrit-Reviewer: Commit Bot <commi...@chromium.org>
                  Gerrit-Reviewer: Dmitry Gozman <dgo...@chromium.org>
                  Gerrit-Reviewer: Eric Lawrence <elaw...@chromium.org>
                  Gerrit-Reviewer: Sarah Chan <spq...@chromium.org>
                  Reply all
                  Reply to author
                  Forward
                  0 new messages