Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/resources/IndexedDBViews.js

Issue 2112673003: [DevTools] Move suspended generator location to internal properties (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed comments Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698