chromium/chrome/browser/ui/android/google_bottom_bar/java/res/layout/bottom_bar_single_decker_with_right_buttons_root_layout.xml

<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2024 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<!--TODO:  Update to match the specs"-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:background="@color/google_bottom_bar_background_color"
    android:layout_width="match_parent"
    android:baselineAligned="false">

  <LinearLayout
      android:id="@+id/bottom_bar_searchbox_container"
      android:orientation="horizontal"
      android:layout_width="0dp"
      android:layout_weight="1"
      android:layout_height="match_parent"/>

  <LinearLayout
      android:id="@+id/bottom_bar_buttons_on_right_container"
      android:orientation="horizontal"
      android:layout_width="wrap_content"
      android:layout_height="match_parent"/>
</LinearLayout>