| Index: Source/devtools/front_end/sdk/NetworkRequest.js
|
| diff --git a/Source/devtools/front_end/sdk/NetworkRequest.js b/Source/devtools/front_end/sdk/NetworkRequest.js
|
| index f239bb33441aa7d6662f006c0ebf2c317a51a461..e59c14fc2a92043dc6e59aed6b41558bd7135a79 100644
|
| --- a/Source/devtools/front_end/sdk/NetworkRequest.js
|
| +++ b/Source/devtools/front_end/sdk/NetworkRequest.js
|
| @@ -388,6 +388,19 @@ WebInspector.NetworkRequest.prototype = {
|
| /**
|
| * @return {boolean}
|
| */
|
| + get blocked()
|
| + {
|
| + return this._blocked;
|
| + },
|
| +
|
| + set blocked(x)
|
| + {
|
| + this._blocked = x;
|
| + },
|
| +
|
| + /**
|
| + * @return {boolean}
|
| + */
|
| cached: function()
|
| {
|
| return (!!this._fromMemoryCache || !!this._fromDiskCache) && !this._transferSize;
|
|
|