1// Copyright (c) 2012 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// Contains constants for known URLs and portions thereof.
6
7#ifndef ANDROID_WEBVIEW_COMMON_URL_CONSTANTS_H_
8#define ANDROID_WEBVIEW_COMMON_URL_CONSTANTS_H_
9
10namespace android_webview {
11
12extern const char kContentScheme[];
13// Special Android file paths.
14extern const char kAndroidAssetPath[];
15extern const char kAndroidResourcePath[];
16
17extern const char kAndroidWebViewVideoPosterScheme[];
18
19}  // namespace android_webview
20
21#endif  // ANDROID_WEBVIEW_COMMON_URL_CONSTANTS_H_
22