| Index: LayoutTests/http/tests/inspector-protocol/resources/protocol-test.html
|
| diff --git a/LayoutTests/http/tests/inspector-protocol/resources/protocol-test.html b/LayoutTests/http/tests/inspector-protocol/resources/protocol-test.html
|
| index dca6752157ad0ab0a608263820fc27f219d357dc..85443233196e879c542e4f63642c3c049701953e 100644
|
| --- a/LayoutTests/http/tests/inspector-protocol/resources/protocol-test.html
|
| +++ b/LayoutTests/http/tests/inspector-protocol/resources/protocol-test.html
|
| @@ -26,7 +26,10 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
| <head>
|
| <script>
|
|
|
| -InspectorFrontendAPI = {};
|
| +DevToolsAPI = {};
|
| +
|
| +// FIXME: remove once embedders switch to new API.
|
| +InspectorFrontendAPI = DevToolsAPI;
|
|
|
| InspectorTest = {};
|
| InspectorTest._dispatchTable = [];
|
| @@ -160,7 +163,7 @@ InspectorTest.sendRawCommand = function(command, handler)
|
| /**
|
| * @param {string|!Object} messageOrObject
|
| */
|
| -InspectorFrontendAPI.dispatchMessage = function(messageOrObject)
|
| +DevToolsAPI.dispatchMessage = function(messageOrObject)
|
| {
|
| var messageObject = (typeof messageOrObject === "string" ? JSON.parse(messageOrObject) : messageOrObject);
|
| if (InspectorTest._collectProtocolMessages)
|
|
|