summaryrefslogtreecommitdiffstats
path: root/android_webview/common/url_constants.cc
blob: b802be6c43516697ad53c1a7b7f1bbe9f43a42cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "android_webview/common/url_constants.h"

namespace android_webview {

// The content: scheme is used in Android for interacting with content
// provides.
// See http://developer.android.com/reference/android/content/ContentUris.html
const char kContentScheme[] = "content";

// These are special paths used with the file: scheme to access application
// assets and resources.
// See http://developer.android.com/reference/android/webkit/WebSettings.html
const char kAndroidAssetPath[] = "/android_asset/";
const char kAndroidResourcePath[] = "/android_res/";

// This scheme is used to display a default HTML5 video poster.
const char kAndroidWebViewVideoPosterScheme[] = "android-webview-video-poster";

}  // namespace android_webview