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

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

Issue 1072523002: Devtools: allow multiple custom formatters (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Test added Created 5 years, 8 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/inspector/InjectedScriptSource.js ('k') | Source/devtools/protocol.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/components/CustomPreviewSection.js
diff --git a/Source/devtools/front_end/components/CustomPreviewSection.js b/Source/devtools/front_end/components/CustomPreviewSection.js
index 42aac5a1b100eaf2c2387c8851807d2c0557fc48..48623dc0e6df5e65252830ecf4f2daf84d14d22e 100644
--- a/Source/devtools/front_end/components/CustomPreviewSection.js
+++ b/Source/devtools/front_end/components/CustomPreviewSection.js
@@ -202,9 +202,10 @@ WebInspector.CustomPreviewSection.prototype = {
* @suppressReceiverCheck
* @suppressGlobalPropertiesCheck
* @suppress {undefinedVars}
- * @this {?}
+ * @this {Object}
+ * @param {*=} formatter
*/
- function load()
+ function load(formatter)
{
/**
* @param {*} jsonMLObject
@@ -229,16 +230,11 @@ WebInspector.CustomPreviewSection.prototype = {
jsonMLObject[1] = bindRemoteObject(originObject, false, false, null, false);
startIndex = 2;
}
-
for (var i = startIndex; i < jsonMLObject.length; ++i)
substituteObjectTagsInCustomPreview(jsonMLObject[i]);
}
try {
- var formatter = window["devtoolsFormatter"];
- if (!formatter)
- return null;
-
var body = formatter.body(this);
substituteObjectTagsInCustomPreview(body);
return body;
@@ -248,7 +244,8 @@ WebInspector.CustomPreviewSection.prototype = {
}
}
- this._object.callFunctionJSON(load, [], onBodyLoaded.bind(this));
+ var customPreview = this._object.customPreview();
+ this._object.callFunctionJSON(load, [{objectId: customPreview.formatterObjectId}], onBodyLoaded.bind(this));
/**
* @param {*} bodyJsonML
« no previous file with comments | « Source/core/inspector/InjectedScriptSource.js ('k') | Source/devtools/protocol.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698