mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
57 lines
1.8 KiB
Plaintext
57 lines
1.8 KiB
Plaintext
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/* 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 nsIConsoleListener;
|
|
interface nsIConsoleMessage;
|
|
|
|
[scriptable, uuid(0eb81d20-c37e-42d4-82a8-ca9ae96bdf52)]
|
|
interface nsIConsoleService : nsISupports
|
|
{
|
|
void logMessage(in nsIConsoleMessage message);
|
|
|
|
/**
|
|
* Convenience method for logging simple messages.
|
|
*/
|
|
void logStringMessage(in wstring message);
|
|
|
|
/**
|
|
* Get an array of all the messages logged so far. If no messages
|
|
* are logged, this function will return a count of 0, but still
|
|
* will allocate one word for messages, so as to show up as a
|
|
* 0-length array when called from script.
|
|
*/
|
|
void getMessageArray([optional] out uint32_t count,
|
|
[retval, array, size_is(count)] out nsIConsoleMessage messages);
|
|
|
|
/**
|
|
* To guard against stack overflows from listeners that could log
|
|
* messages (it's easy to do this inadvertently from listeners
|
|
* implemented in JavaScript), we don't call any listeners when
|
|
* another error is already being logged.
|
|
*/
|
|
void registerListener(in nsIConsoleListener listener);
|
|
|
|
/**
|
|
* Each registered listener should also be unregistered.
|
|
*/
|
|
void unregisterListener(in nsIConsoleListener listener);
|
|
|
|
/**
|
|
* Clear the message buffer (e.g. for privacy reasons).
|
|
*/
|
|
void reset();
|
|
};
|
|
|
|
|
|
%{ C++
|
|
#define NS_CONSOLESERVICE_CID \
|
|
{ 0x7e3ff85c, 0x1dd2, 0x11b2, { 0x8d, 0x4b, 0xeb, 0x45, 0x2c, 0xb0, 0xff, 0x40 }}
|
|
|
|
#define NS_CONSOLESERVICE_CONTRACTID "@mozilla.org/consoleservice;1"
|
|
%}
|
|
|