| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 377 createCell: function(columnIdentifier) | 377 createCell: function(columnIdentifier) |
| 378 { | 378 { |
| 379 var cell = WebInspector.DataGridNode.prototype.createCell.call(this, col
umnIdentifier); | 379 var cell = WebInspector.DataGridNode.prototype.createCell.call(this, col
umnIdentifier); |
| 380 var value = this.data[columnIdentifier]; | 380 var value = this.data[columnIdentifier]; |
| 381 | 381 |
| 382 switch (columnIdentifier) { | 382 switch (columnIdentifier) { |
| 383 case "value": | 383 case "value": |
| 384 case "key": | 384 case "key": |
| 385 case "primaryKey": | 385 case "primaryKey": |
| 386 cell.removeChildren(); | 386 cell.removeChildren(); |
| 387 var objectElement = WebInspector.ObjectPropertiesSection.defaultObje
ctPresentation(value, true); | 387 var objectElement = WebInspector.ObjectPropertiesSection.defaultObje
ctPresentation(value, undefined, true); |
| 388 cell.appendChild(objectElement); | 388 cell.appendChild(objectElement); |
| 389 break; | 389 break; |
| 390 default: | 390 default: |
| 391 } | 391 } |
| 392 | 392 |
| 393 return cell; | 393 return cell; |
| 394 }, | 394 }, |
| 395 | 395 |
| 396 __proto__: WebInspector.DataGridNode.prototype | 396 __proto__: WebInspector.DataGridNode.prototype |
| 397 } | 397 } |
| OLD | NEW |