nsIMessageManager.idl (665B)
1 /* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 2 /* This Source Code Form is subject to the terms of the Mozilla Public 3 * License, v. 2.0. If a copy of the MPL was not distributed with this 4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 5 6 #include "nsISupports.idl" 7 8 interface nsIContent; 9 10 // NOTE: Only scriptable for Ci.nsIMessageSender 11 [scriptable, builtinclass, uuid(bb5d79e4-e73c-45e7-9651-4d718f4b994c)] 12 interface nsIMessageSender : nsISupports 13 { 14 }; 15 16 [uuid(b39a3324-b574-4f85-8cdb-274d04f807ef)] 17 interface nsIInProcessContentFrameMessageManager : nsIMessageSender 18 { 19 [notxpcom] nsIContent getOwnerContent(); 20 };