2001-09-26 02:53:13 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* 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/. */
|
1999-08-09 05:34:04 +04:00
|
|
|
|
2002-09-26 03:29:40 +04:00
|
|
|
#include "nsISupports.idl"
|
1999-08-09 05:34:04 +04:00
|
|
|
|
2002-09-26 03:29:40 +04:00
|
|
|
interface nsIFile;
|
1999-08-09 05:34:04 +04:00
|
|
|
|
2002-09-26 03:29:40 +04:00
|
|
|
[scriptable, uuid(4805e681-49b9-11d3-9ce4-ed60bd6cb5bc)]
|
1999-08-09 05:34:04 +04:00
|
|
|
|
2002-09-26 03:29:40 +04:00
|
|
|
interface nsIEditorLogging : nsISupports
|
1999-08-09 05:34:04 +04:00
|
|
|
{
|
2002-09-26 03:29:40 +04:00
|
|
|
/** Start logging.
|
2002-09-26 03:34:04 +04:00
|
|
|
* @param aLogFile The file to which the log should be written.
|
2002-09-26 03:29:40 +04:00
|
|
|
*/
|
|
|
|
void startLogging(in nsIFile aLogFile);
|
1999-08-09 05:34:04 +04:00
|
|
|
|
2002-09-26 03:29:40 +04:00
|
|
|
/** Stop logging.
|
|
|
|
*/
|
|
|
|
void stopLogging();
|
1999-08-09 05:34:04 +04:00
|
|
|
};
|
|
|
|
|