| Index: third_party/WebKit/Source/devtools/front_end/host/InspectorFrontendHost.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/host/InspectorFrontendHost.js b/third_party/WebKit/Source/devtools/front_end/host/InspectorFrontendHost.js
|
| index 14d426c2b175154e8992131afb2dcf2ef1eaed7d..7b024cf938b7684381fdcc423da33da7c11590e6 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/host/InspectorFrontendHost.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/host/InspectorFrontendHost.js
|
| @@ -421,7 +421,7 @@ Host.InspectorFrontendHostStub = class {
|
| /**
|
| * @unrestricted
|
| */
|
| -var InspectorFrontendAPIImpl = class {
|
| +Host.InspectorFrontendAPIImpl = class {
|
| constructor() {
|
| this._debugFrontend =
|
| !!Runtime.queryParam('debugFrontend') || (window['InspectorTest'] && window['InspectorTest']['debugTest']);
|
| @@ -514,7 +514,7 @@ window.InspectorFrontendHost = InspectorFrontendHost;
|
| // FIXME: This file is included into both apps, since the devtools_app needs the InspectorFrontendHostAPI only,
|
| // so the host instance should not initialized there.
|
| initializeInspectorFrontendHost();
|
| - window.InspectorFrontendAPI = new InspectorFrontendAPIImpl();
|
| + window.InspectorFrontendAPI = new Host.InspectorFrontendAPIImpl();
|
| Common.setLocalizationPlatform(InspectorFrontendHost.platform());
|
| })();
|
|
|
|
|