mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
7436f01057
Doing QI from nsIEditor to nsIEditorIMESupport doesn't make sense because editor should always support all methods and attributes of nsIEditorIMESupport (it does NOT mean that all nsIEditor implementation need to support IME). This patch moves all of them to nsIEditor for avoiding redundant QIs. MozReview-Commit-ID: DzIKuGHG4iy --HG-- extra : rebase_source : cc5e9a6ae4572ebe461d9770ffa5c23d33dc8526
12 lines
416 B
Plaintext
12 lines
416 B
Plaintext
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* 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 "nsIEditor.idl"
|
|
|
|
[scriptable, uuid(0ba7f490-afb8-46dd-87fc-bc6137fbc899)]
|
|
interface nsIEditorIMESupport : nsIEditor
|
|
{
|
|
};
|