Home | History | Annotate | Download | only in common
      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 
     10 namespace android_webview {
     11 
     12 extern const char kContentScheme[];
     13 // Special Android file paths.
     14 extern const char kAndroidAssetPath[];
     15 extern const char kAndroidResourcePath[];
     16 
     17 extern const char kAndroidWebViewVideoPosterScheme[];
     18 
     19 }  // namespace android_webview
     20 
     21 #endif  // ANDROID_WEBVIEW_COMMON_URL_CONSTANTS_H_
     22