1 // Copyright 2019 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 package org.chromium.weblayer_private.interfaces;
6 
7 /** Keys for the Bundle of arguments with which BrowserFragments are created. */
8 public interface UrlBarOptionsKeys {
9     /**
10      * If true, clicking on the url shows page info. Default is false.
11      */
12     String SHOW_PAGE_INFO_WHEN_URL_TEXT_CLICKED = "ShowPageInfoWhenUrlTextClicked";
13     /**
14      * If true, shows publisher url. Default is false.
15      * @since 88
16      */
17     String SHOW_PUBLISHER_URL = "ShowPublisherUrl";
18     String URL_ICON_COLOR = "UrlIconColor";
19     String URL_TEXT_COLOR = "UrlTextColor";
20     String URL_TEXT_SIZE = "UrlTextSize";
21 }
22