| Index: third_party/WebKit/Source/devtools/front_end/components/RemoteObjectPreviewFormatter.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/components/RemoteObjectPreviewFormatter.js b/third_party/WebKit/Source/devtools/front_end/components/RemoteObjectPreviewFormatter.js
|
| index a1a30daad2b7a116298878e1939ecb4e321885cf..a3e780d336f72591d36fa8cde1676b598cad1bba 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/components/RemoteObjectPreviewFormatter.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/components/RemoteObjectPreviewFormatter.js
|
| @@ -4,7 +4,7 @@
|
| /**
|
| * @unrestricted
|
| */
|
| -WebInspector.RemoteObjectPreviewFormatter = class {
|
| +Components.RemoteObjectPreviewFormatter = class {
|
| /**
|
| * @param {!Element} parentElement
|
| * @param {!Protocol.Runtime.ObjectPreview} preview
|
| @@ -42,7 +42,7 @@ WebInspector.RemoteObjectPreviewFormatter = class {
|
| */
|
| _appendPropertiesPreview(parentElement, preview) {
|
| var isArray = preview.subtype === 'array' || preview.subtype === 'typedarray';
|
| - var arrayLength = WebInspector.RemoteObject.arrayLength(preview);
|
| + var arrayLength = SDK.RemoteObject.arrayLength(preview);
|
| var properties = preview.properties;
|
| if (isArray)
|
| properties = properties.slice().stableSort(compareIndexesFirst);
|
| @@ -153,7 +153,7 @@ WebInspector.RemoteObjectPreviewFormatter = class {
|
| }
|
|
|
| if (type === 'object' && subtype === 'node' && description) {
|
| - WebInspector.DOMPresentationUtils.createSpansForNodeTitle(span, description);
|
| + Components.DOMPresentationUtils.createSpansForNodeTitle(span, description);
|
| return span;
|
| }
|
|
|
|
|