Android4.4 webkit底层网络链接超时时长设置

Android4.4 WebView加载解析页面时,加载达到100%之前让它显示圆形加载进度条,若加载的页面中有图片是网络链接地址,则会去下载该图片,但若该链接地址不可达,默认超时时长大约有2分钟,太长了无法忍受,现想在webkit底层修改超时时长为10s,即圆形加载进度条最长显示10s。

网页页面写法如下:
1、a.html:

天使的铃铛



2、点击a页面中的图片会跳转到b页面,
b.html:

已跳转到加载图片页面

<
img
id="jslog"
src="http://61.160.131.15:9298/gatherEpg?1=1&gatherSource=READ&gathSourceId=&gathTargetId=&userId=itv095156737612&areaCode=3001&userToken=otVL26atxbtjf6Q3WcrUULh178582899&stbId=0010039900E06800SY0160B617FA6C0A&spId=spa00054&actType=1&currentTime=20160496165648&contentType=MAIN" border="0"/>


问题就在于b页面中图片链接不可达,导致圆形加载进度条一直在转圈,现需要设置该超时时长,缩短圆形加载进度条的时长,请问在webkit底层C/C++代码中的哪个模块中进行设置?

b页面的写法如下,其中有个img标签,src为不可达的网络链接:

<
img

id="jslog"

src="http://61.160.131.15:9298/gatherEpg?1=1&gatherSource=READ&gathSourceId=&gathTargetId=&userId=itv095156737612&areaCode=3001&userToken=otVL26atxbtjf6Q3WcrUULh178582899&stbId=0010039900E06800SY0160B617FA6C0A&spId=spa00054&actType=1&currentTime=20160496165648&contentType=MAIN" border="0"

/>