зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1698786: part 3) Add some logging to `mozSpellChecker`. r=masayuki
Differential Revision: https://phabricator.services.mozilla.com/D108623
This commit is contained in:
Родитель
0840574ecb
Коммит
0169591f05
|
@ -10,12 +10,14 @@
|
|||
#include "nsISimpleEnumerator.h"
|
||||
#include "mozEnglishWordUtils.h"
|
||||
#include "mozilla/dom/ContentChild.h"
|
||||
#include "mozilla/Logging.h"
|
||||
#include "mozilla/PRemoteSpellcheckEngineChild.h"
|
||||
#include "mozilla/TextServicesDocument.h"
|
||||
#include "nsXULAppAPI.h"
|
||||
#include "RemoteSpellCheckEngineChild.h"
|
||||
|
||||
using mozilla::GenericPromise;
|
||||
using mozilla::LogLevel;
|
||||
using mozilla::PRemoteSpellcheckEngineChild;
|
||||
using mozilla::RemoteSpellcheckEngineChild;
|
||||
using mozilla::TextServicesDocument;
|
||||
|
@ -23,6 +25,8 @@ using mozilla::dom::ContentChild;
|
|||
|
||||
#define DEFAULT_SPELL_CHECKER "@mozilla.org/spellchecker/engine;1"
|
||||
|
||||
static mozilla::LazyLogModule sSpellChecker("SpellChecker");
|
||||
|
||||
NS_IMPL_CYCLE_COLLECTION(mozSpellChecker, mTextServicesDocument,
|
||||
mPersonalDictionary)
|
||||
|
||||
|
@ -68,6 +72,8 @@ TextServicesDocument* mozSpellChecker::GetTextServicesDocument() {
|
|||
|
||||
nsresult mozSpellChecker::SetDocument(
|
||||
TextServicesDocument* aTextServicesDocument, bool aFromStartofDoc) {
|
||||
MOZ_LOG(sSpellChecker, LogLevel::Debug, ("%s", __FUNCTION__));
|
||||
|
||||
mTextServicesDocument = aTextServicesDocument;
|
||||
mFromStart = aFromStartofDoc;
|
||||
return NS_OK;
|
||||
|
|
Загрузка…
Ссылка в новой задаче