| Index: third_party/WebKit/Source/devtools/front_end/network/RequestPreviewView.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/network/RequestPreviewView.js b/third_party/WebKit/Source/devtools/front_end/network/RequestPreviewView.js
|
| index c09084858f60b23a5b83d39d81f8ac866edc3435..4235c850a592c95bc9ac2acf33ac720e0673cbc2 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/network/RequestPreviewView.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/network/RequestPreviewView.js
|
| @@ -102,13 +102,14 @@ WebInspector.RequestPreviewView.prototype = {
|
|
|
| /**
|
| * @param {?WebInspector.ParsedJSON} parsedJSON
|
| - * @return {?WebInspector.JSONView}
|
| + * @return {?WebInspector.SearchableView}
|
| */
|
| _jsonView: function(parsedJSON)
|
| {
|
| if (!parsedJSON || typeof parsedJSON.data !== "object")
|
| return null;
|
| - return new WebInspector.JSONView(/** @type {!WebInspector.ParsedJSON} */ (parsedJSON));
|
| + var jsonView = new WebInspector.JSONView(/** @type {!WebInspector.ParsedJSON} */ (parsedJSON));
|
| + return jsonView.makeSearchable();
|
| },
|
|
|
| /**
|
|
|