• Home
  • History
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 #include "android_webview/common/url_constants.h"
6 
7 namespace android_webview {
8 
9 // The content: scheme is used in Android for interacting with content
10 // provides.
11 // See http://developer.android.com/reference/android/content/ContentUris.html
12 const char kContentScheme[] = "content";
13 
14 // These are special paths used with the file: scheme to access application
15 // assets and resources.
16 // See http://developer.android.com/reference/android/webkit/WebSettings.html
17 const char kAndroidAssetPath[] = "/android_asset/";
18 const char kAndroidResourcePath[] = "/android_res/";
19 
20 // This scheme is used to display a default HTML5 video poster.
21 const char kAndroidWebViewVideoPosterScheme[] = "android-webview-video-poster";
22 
23 }  // namespace android_webview
24