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

Unified Diff: Source/devtools/front_end/console/CustomPreviewSection.js

Issue 899163003: Move rendering/RenderObject to layout/LayoutObject. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/testing/Internals.cpp ('k') | Source/modules/accessibility/AXARIAGrid.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/console/CustomPreviewSection.js
diff --git a/Source/devtools/front_end/console/CustomPreviewSection.js b/Source/devtools/front_end/console/CustomPreviewSection.js
index 3a4ebabda7089e151a4b235ea34ba7fe6e992b96..9d3121bcfafb32fe0ab71135529f39a57b508b71 100644
--- a/Source/devtools/front_end/console/CustomPreviewSection.js
+++ b/Source/devtools/front_end/console/CustomPreviewSection.js
@@ -98,7 +98,7 @@ WebInspector.CustomPreviewSection.prototype = {
var array = /** @type {!Array.<*>} */(jsonML);
if (array[0] === "object")
- return this._renderObjectTag(array);
+ return this._layoutObjectTag(array);
else
return this._renderElement(array);
},
@@ -135,7 +135,7 @@ WebInspector.CustomPreviewSection.prototype = {
* @param {!Array.<*>} objectTag
* @return {!Node}
*/
- _renderObjectTag: function(objectTag)
+ _layoutObjectTag: function(objectTag)
{
objectTag.shift();
var attributes = objectTag.shift();
« no previous file with comments | « Source/core/testing/Internals.cpp ('k') | Source/modules/accessibility/AXARIAGrid.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698