Fix DisownOpener and related tests.
[chromium-blink-merge.git] / android_webview / common / url_constants.cc
blobb802be6c43516697ad53c1a7b7f1bbe9f43a42cd
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.
5 #include "android_webview/common/url_constants.h"
7 namespace android_webview {
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";
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/";
20 // This scheme is used to display a default HTML5 video poster.
21 const char kAndroidWebViewVideoPosterScheme[] = "android-webview-video-poster";
23 } // namespace android_webview