#ifndef ANDROID_WEBVIEW_BROWSER_NET_INIT_NATIVE_CALLBACK_H_
#define ANDROID_WEBVIEW_BROWSER_NET_INIT_NATIVE_CALLBACK_H_
#include "base/memory/ref_counted.h"
#include "base/memory/scoped_ptr.h"
#include "net/url_request/url_request_job_factory.h"
namespace net {
class CookieStore;
}
namespace android_webview {
class AwBrowserContext;
scoped_refptr<net::CookieStore> CreateCookieStore(
AwBrowserContext* browser_context);
scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
CreateAndroidAssetFileProtocolHandler();
scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
CreateAndroidContentProtocolHandler();
}
#endif