Disable sync for Lightspeed experimentation.
[chromium-blink-merge.git] / android_webview / native / android_protocol_handler.h
blobd5a4df1a6c080bfa4b5e00a03b61707d186f8d24
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 #ifndef ANDROID_WEBVIEW_NATIVE_ANDROID_PROTOCOL_HANDLER_H_
6 #define ANDROID_WEBVIEW_NATIVE_ANDROID_PROTOCOL_HANDLER_H_
8 #include "base/android/jni_android.h"
9 #include "base/memory/scoped_ptr.h"
11 namespace net {
12 class URLRequestContext;
13 class URLRequestInterceptor;
14 } // namespace net
16 namespace android_webview {
18 // These methods create interceptors for Android WebView-specific schemes:
20 // - "content:" scheme is used for accessing data from Android content
21 // providers, see http://developer.android.com/guide/topics/providers/
22 // content-provider-basics.html#ContentURIs
23 scoped_ptr<net::URLRequestInterceptor> CreateContentSchemeRequestInterceptor();
25 // - "file:" scheme extension for accessing application assets and resources
26 // (file:///android_asset/ and file:///android_res/), see
27 // http://developer.android.com/reference/android/webkit/
28 // WebSettings.html#setAllowFileAccess(boolean)
29 scoped_ptr<net::URLRequestInterceptor> CreateAssetFileRequestInterceptor();
31 bool RegisterAndroidProtocolHandler(JNIEnv* env);
33 } // namespace android_webview
35 #endif // ANDROID_WEBVIEW_NATIVE_ANDROID_PROTOCOL_HANDLER_H_