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

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

Issue 2712513002: DevTools: extract ObjectUI module from Components (Closed)
Patch Set: fix build.gn Created 3 years, 10 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 344 matching lines...) Expand 10 before | Expand all | Expand 10 after
355 */ 355 */
356 createCell(columnIdentifier) { 356 createCell(columnIdentifier) {
357 var cell = super.createCell(columnIdentifier); 357 var cell = super.createCell(columnIdentifier);
358 var value = /** @type {!SDK.RemoteObject} */ (this.data[columnIdentifier]); 358 var value = /** @type {!SDK.RemoteObject} */ (this.data[columnIdentifier]);
359 359
360 switch (columnIdentifier) { 360 switch (columnIdentifier) {
361 case 'value': 361 case 'value':
362 case 'key': 362 case 'key':
363 case 'primaryKey': 363 case 'primaryKey':
364 cell.removeChildren(); 364 cell.removeChildren();
365 var objectElement = Components.ObjectPropertiesSection.defaultObjectPres entation(value, undefined, true); 365 var objectElement = ObjectUI.ObjectPropertiesSection.defaultObjectPresen tation(value, undefined, true);
366 cell.appendChild(objectElement); 366 cell.appendChild(objectElement);
367 break; 367 break;
368 default: 368 default:
369 } 369 }
370 370
371 return cell; 371 return cell;
372 } 372 }
373 }; 373 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698