Changeset 218467 in webkit


Ignore:
Timestamp:
Jun 18, 2017 8:12:15 PM (7 years ago)
Author:
Dewei Zhu
Message:

Remove 'EditCommand::isEditCommandComposition'.
https://bugs.webkit.org/show_bug.cgi?id=173525

Reviewed by Wenson Hsieh.

Should remove 'isEditCommandComposition' from 'EditCommand' for:

  1. 'EditCommandComposition' is no longer a subclass of EditCommand.
  2. 'isEditCommandComposition' is not used at all.
  • editing/EditCommand.h:

(WebCore::EditCommand::isCompositeEditCommand):
(WebCore::EditCommand::isEditCommandComposition): Deleted.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r218465 r218467  
     12017-06-18  Dewei Zhu  <dewei_zhu@apple.com>
     2
     3        Remove 'EditCommand::isEditCommandComposition'.
     4        https://bugs.webkit.org/show_bug.cgi?id=173525
     5
     6        Reviewed by Wenson Hsieh.
     7
     8        Should remove 'isEditCommandComposition' from 'EditCommand' for:
     9            1. 'EditCommandComposition' is no longer a subclass of EditCommand.
     10            2. 'isEditCommandComposition' is not used at all.
     11
     12        * editing/EditCommand.h:
     13        (WebCore::EditCommand::isCompositeEditCommand):
     14        (WebCore::EditCommand::isEditCommandComposition): Deleted.
     15
    1162017-06-18  Chris Dumez  <cdumez@apple.com>
    217
  • trunk/Source/WebCore/editing/EditCommand.h

    r208646 r218467  
    5757    virtual bool isSimpleEditCommand() const { return false; }
    5858    virtual bool isCompositeEditCommand() const { return false; }
    59     virtual bool isEditCommandComposition() const { return false; }
    6059    bool isTopLevelCommand() const { return !m_parent; }
    6160
Note: See TracChangeset for help on using the changeset viewer.