| Index: Source/devtools/front_end/devtools.js
|
| diff --git a/Source/devtools/front_end/devtools.js b/Source/devtools/front_end/devtools.js
|
| index e3f861d31057c880fe01f7379b5f27ff8bf5c38a..3a8e74a4e40f8902baa6fe4ac07a12e7ddcdbc3a 100644
|
| --- a/Source/devtools/front_end/devtools.js
|
| +++ b/Source/devtools/front_end/devtools.js
|
| @@ -272,6 +272,14 @@ DevToolsAPIImpl.prototype = {
|
| streamWrite: function(id, chunk)
|
| {
|
| this._dispatchOnInspectorFrontendAPI("streamWrite", [id, chunk]);
|
| + },
|
| +
|
| + /**
|
| + * @param {!Object} command
|
| + */
|
| + dispatchFrontendAPIMessage: function(command)
|
| + {
|
| + this._dispatchOnInspectorFrontendAPI("dispatchFrontendAPIMessage", [command]);
|
| }
|
| }
|
|
|
| @@ -496,6 +504,15 @@ InspectorFrontendHostImpl.prototype = {
|
|
|
| /**
|
| * @override
|
| + * @param {string} message
|
| + */
|
| + sendFrontendAPINotification: function(message)
|
| + {
|
| + DevToolsAPI.sendMessageToEmbedder("sendFrontendAPINotification", [message], null);
|
| + },
|
| +
|
| + /**
|
| + * @override
|
| */
|
| requestFileSystems: function()
|
| {
|
|
|