Index: core/inspector/InspectorFrontendHost.idl |
diff --git a/core/inspector/InspectorFrontendHost.idl b/core/inspector/InspectorFrontendHost.idl |
index 058608a71148919e747e54ffbfc71e3c1a4ee544..c655170d8fc744085664cf2ef26c2ec76480a0d7 100644 |
--- a/core/inspector/InspectorFrontendHost.idl |
+++ b/core/inspector/InspectorFrontendHost.idl |
@@ -31,6 +31,7 @@ |
*/ |
[ |
+ WillBeGarbageCollected, |
NoInterfaceObject |
] interface InspectorFrontendHost { |
// FIXME: setZoomFactor is here only for old frontends. Remove in M38. |
@@ -43,7 +44,9 @@ |
[Custom] DOMString platform(); |
[Custom] DOMString port(); |
+ // FIXME: showContextMenu is here only for old frontends. Remove in M43. |
[Custom] void showContextMenu(MouseEvent event, any items); |
+ [Custom] void showContextMenuAtPoint(float x, float y, any items); |
void sendMessageToBackend(DOMString message); |
void sendMessageToEmbedder(DOMString message); |
@@ -54,4 +57,5 @@ |
DOMString getSelectionForegroundColor(); |
boolean isUnderTest(); |
+ boolean isHostedMode(); |
}; |