2012-08-27 18:13:02 +04:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
|
|
|
|
interface nsIContent;
|
2018-03-22 05:43:17 +03:00
|
|
|
|
2018-08-01 22:11:24 +03:00
|
|
|
// NOTE: Only scriptable for Ci.nsIMessageSender
|
|
|
|
[scriptable, builtinclass, uuid(bb5d79e4-e73c-45e7-9651-4d718f4b994c)]
|
2018-02-16 17:28:31 +03:00
|
|
|
interface nsIMessageSender : nsISupports
|
2012-08-27 18:13:02 +04:00
|
|
|
{
|
|
|
|
};
|
|
|
|
|
2016-01-30 20:05:36 +03:00
|
|
|
[uuid(b39a3324-b574-4f85-8cdb-274d04f807ef)]
|
2018-08-03 06:49:09 +03:00
|
|
|
interface nsIInProcessContentFrameMessageManager : nsIMessageSender
|
2012-08-27 18:13:02 +04:00
|
|
|
{
|
|
|
|
[notxpcom] nsIContent getOwnerContent();
|
|
|
|
};
|