Bug 1421510 - Part 1. Make nsITextServicesFilter builtinclass. r?masayuki draft
authorMakoto Kato <m_kato@ga2.so-net.ne.jp>
Mon, 04 Jun 2018 11:15:05 +0900
changeset 807761 90d59a6fc36eb9a79201984809b0dcabbd0ac0af
parent 807714 0b5495dc100dd3bfda0886a4ad563a3c729c9b72
child 807762 e9128da62f1a1fc170958f6f11d33559d0a55f1b
child 808338 06537acf22899748485b172b08655e020c95d8c9
push id113204
push userbmo:m_kato@ga2.so-net.ne.jp
push dateFri, 15 Jun 2018 17:59:08 +0000
reviewersmasayuki
bugs1421510
milestone62.0a1
Bug 1421510 - Part 1. Make nsITextServicesFilter builtinclass. r?masayuki There is no JavaScript implementation (including c-c and bluegriffon) for nsITextServicesFilter, so we make this builtin to access builtin C++ implementation directly. MozReview-Commit-ID: BGZlDzsKT6N
editor/spellchecker/nsITextServicesFilter.idl
--- a/editor/spellchecker/nsITextServicesFilter.idl
+++ b/editor/spellchecker/nsITextServicesFilter.idl
@@ -2,17 +2,17 @@
 /* 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"
 
 webidl Node;
 
-[scriptable, uuid(5BEC321F-59AC-413a-A4AD-8A8D7C50A0D0)]
+[scriptable, builtinclass, uuid(5BEC321F-59AC-413a-A4AD-8A8D7C50A0D0)]
 interface nsITextServicesFilter : nsISupports
 {
 
   /**
    * Indicates whether the content node should be skipped by the iterator
    *  @param aNode - node to skip
    */
   boolean skip(in Node aNode);