chromium/chrome/browser/safety_check/android/java/res/layout/safety_check_bottom_elements.xml

<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2020 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:layout_gravity="end" >
     <!-- Text view for displaying the timestamp of the last run. -->
     <TextView
          android:id="@+id/safety_check_timestamp"
          android:layout_marginEnd="@dimen/safety_check_button_margin"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_gravity="end" />
     <!-- Button for starting Safety check. -->
     <org.chromium.ui.widget.ButtonCompat
          android:id="@+id/safety_check_button"
          style="@style/FilledButton"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_gravity="end"
          android:layout_margin="@dimen/safety_check_button_margin"
          android:focusable="true"
          android:text="@string/safety_check_button" />
</LinearLayout>