Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / inspector / InspectorFrontendHost.idl
index 058608a..c655170 100644 (file)
@@ -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();
 };