| Index: third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js b/third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js
|
| index 44007078fd193f6dbd8affa017cc711c314fba13..0c5f059761a204edf17eba34ffd97feb9415de26 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js
|
| @@ -44,7 +44,7 @@ Console.ConsoleViewMessage = class {
|
| this._closeGroupDecorationCount = 0;
|
| this._nestingLevel = nestingLevel;
|
|
|
| - /** @type {?UI.DataGrid} */
|
| + /** @type {?DataGrid.DataGrid} */
|
| this._dataGrid = null;
|
| this._previewFormatter = new Components.RemoteObjectPreviewFormatter();
|
| this._searchRegex = null;
|
| @@ -174,7 +174,7 @@ Console.ConsoleViewMessage = class {
|
| columnNames.unshift(Common.UIString('(index)'));
|
|
|
| if (flatValues.length) {
|
| - this._dataGrid = UI.SortableDataGrid.create(columnNames, flatValues);
|
| + this._dataGrid = DataGrid.SortableDataGrid.create(columnNames, flatValues);
|
|
|
| var formattedResult = createElementWithClass('span', 'console-message-text');
|
| var tableElement = formattedResult.createChild('div', 'console-message-formatted-table');
|
|
|