Refactor gpu code generation
[chromium-blink-merge.git] / android_webview / common / url_constants.cc
blob89a32bb3163c0c46398964f2fa094183d93d2760
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 // These are special paths used with the file: scheme to access application
10 // assets and resources.
11 // See http://developer.android.com/reference/android/webkit/WebSettings.html
12 const char kAndroidAssetPath[] = "/android_asset/";
13 const char kAndroidResourcePath[] = "/android_res/";
15 // This scheme is used to display a default HTML5 video poster.
16 const char kAndroidWebViewVideoPosterScheme[] = "android-webview-video-poster";
18 } // namespace android_webview