| Index: android_webview/native/net_init_native_callback.cc
|
| diff --git a/android_webview/native/net_init_native_callback.cc b/android_webview/native/net_init_native_callback.cc
|
| index 585282f06b4232cad7b77bc4b0831818a43144c3..e75df7fbb51787ae9fc4371cdc3d9b2c8d67c6d4 100644
|
| --- a/android_webview/native/net_init_native_callback.cc
|
| +++ b/android_webview/native/net_init_native_callback.cc
|
| @@ -12,10 +12,12 @@
|
| namespace android_webview {
|
| class AwURLRequestJobFactory;
|
|
|
| -scoped_ptr<net::URLRequestJobFactory> CreateAndroidJobFactoryAndCookieMonster(
|
| - net::URLRequestContext* context,
|
| - scoped_ptr<AwURLRequestJobFactory> job_factory) {
|
| +void DidCreateURLRequestContextOnIOThread(net::URLRequestContext* context) {
|
| SetCookieMonsterOnNetworkStackInit(context);
|
| +}
|
| +
|
| +scoped_ptr<net::URLRequestJobFactory> CreateAndroidJobFactory(
|
| + scoped_ptr<AwURLRequestJobFactory> job_factory) {
|
| return CreateAndroidRequestJobFactory(job_factory.Pass());
|
| }
|
|
|
|
|