Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Side by Side Diff: third_party/WebKit/Source/core/editing/commands/CompositeEditCommand.h

Issue 2636083003: Remove unused function UndoStep::belongsTo() (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/editing/commands/CompositeEditCommand.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2005, 2006, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2005, 2006, 2008 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 44
45 enum class EditCommandSource { kMenuOrKeyBinding, kDOM }; 45 enum class EditCommandSource { kMenuOrKeyBinding, kDOM };
46 46
47 class EditCommandComposition final : public UndoStep { 47 class EditCommandComposition final : public UndoStep {
48 public: 48 public:
49 static EditCommandComposition* create(Document*, 49 static EditCommandComposition* create(Document*,
50 const VisibleSelection&, 50 const VisibleSelection&,
51 const VisibleSelection&, 51 const VisibleSelection&,
52 InputEvent::InputType); 52 InputEvent::InputType);
53 53
54 bool belongsTo(const LocalFrame&) const override;
55 void unapply() override; 54 void unapply() override;
56 void reapply() override; 55 void reapply() override;
57 InputEvent::InputType inputType() const override; 56 InputEvent::InputType inputType() const override;
58 void append(SimpleEditCommand*); 57 void append(SimpleEditCommand*);
59 void append(EditCommandComposition*); 58 void append(EditCommandComposition*);
60 59
61 const VisibleSelection& startingSelection() const { 60 const VisibleSelection& startingSelection() const {
62 return m_startingSelection; 61 return m_startingSelection;
63 } 62 }
64 const VisibleSelection& endingSelection() const { return m_endingSelection; } 63 const VisibleSelection& endingSelection() const { return m_endingSelection; }
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 271
273 DEFINE_TYPE_CASTS(CompositeEditCommand, 272 DEFINE_TYPE_CASTS(CompositeEditCommand,
274 EditCommand, 273 EditCommand,
275 command, 274 command,
276 command->isCompositeEditCommand(), 275 command->isCompositeEditCommand(),
277 command.isCompositeEditCommand()); 276 command.isCompositeEditCommand());
278 277
279 } // namespace blink 278 } // namespace blink
280 279
281 #endif // CompositeEditCommand_h 280 #endif // CompositeEditCommand_h
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/editing/commands/CompositeEditCommand.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698