/usr/share/idl/thunderbird/msgIOverride.idl is in thunderbird-dev 1:52.8.0-1~deb8u1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim:set ts=2 sw=2 sts=2 et cindent: */
/* 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"
#include "msgIDelegateList.idl"
/**
* Mailnews code typically has a C++ base class for objects, which is then
* specialized for each account type with a C++ subclass of the base class.
*
* This interface provides the ability of JavaScript-based account
* implementations to use the same C++ base classes as core objects, but
* use JavaScript to override methods instead of C++.
*/
[scriptable, uuid(68075269-8BBD-4a09-AC04-3241BF44F633)]
interface msgIOverride : nsISupports
{
/**
*
* A list of methods in the C++ base class that will be delegated to the JS
* delegate. This is calculated once, and then a fixed value is set to
* all subsequent instances so that it does not need to be recalculated each
* time. If the value has not yet been set, this will return a new instance.
*/
attribute msgIDelegateList methodsToDelegate;
/**
* JavaScript-based xpcom object that overrides C++ methods.
*/
attribute nsISupports jsDelegate;
/**
* C++ class used to implement default functionality. This is used when
* JavaScript methods want to call the base class default action, bypassing a
* possible JS override.
*/
readonly attribute nsISupports cppBase;
};
|