1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24

content / public / android / java / src / org / chromium / content_public / common / ContentUrlConstants.java [blame]

// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

package org.chromium.content_public.common;

/** URL constants used by both Chrome, WebLayer and WebView. */
public final class ContentUrlConstants {
    public static final String ABOUT_SCHEME = "about";

    public static final String ABOUT_URL_SHORT_PREFIX = "about:";

    public static final String ABOUT_BLANK_DISPLAY_URL = "about:blank";
    public static final String ABOUT_BLANK_URL = "about://blank";

    public static final String PLAY_STORE_URL_PREFIX = "market://details?id=";

    public static final String DATA_SCHEME = "data";
    public static final String FILE_SCHEME = "file";
    public static final String HTTP_SCHEME = "http";
    public static final String HTTPS_SCHEME = "https";

    private ContentUrlConstants() {}
}