summaryrefslogtreecommitdiffstats
path: root/android_webview/native/net_init_native_callback.cc
blob: 22a245bad688daef86ba4b7895d5357d4b01a096 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "android_webview/browser/net/init_native_callback.h"

#include "android_webview/browser/net/aw_url_request_job_factory.h"
#include "android_webview/native/android_protocol_handler.h"
#include "net/url_request/url_request_interceptor.h"

namespace android_webview {

scoped_ptr<net::URLRequestInterceptor>
CreateAndroidAssetFileRequestInterceptor() {
  return CreateAssetFileRequestInterceptor();
}

scoped_ptr<net::URLRequestInterceptor>
CreateAndroidContentRequestInterceptor() {
  return CreateContentSchemeRequestInterceptor();
}

}  // namespace android_webview