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

Unified Diff: third_party/WebKit/Source/core/editing/commands/InsertNodeBeforeCommand.h

Issue 1679253002: Editing: Add EditingState* argument to EditCommand::doApply. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/editing/commands/InsertNodeBeforeCommand.h
diff --git a/third_party/WebKit/Source/core/editing/commands/InsertNodeBeforeCommand.h b/third_party/WebKit/Source/core/editing/commands/InsertNodeBeforeCommand.h
index dd668cf86e6f9f0adc4841c2e06322e2173f23f5..4c8569e38b79f74f378684adfae13599a9490220 100644
--- a/third_party/WebKit/Source/core/editing/commands/InsertNodeBeforeCommand.h
+++ b/third_party/WebKit/Source/core/editing/commands/InsertNodeBeforeCommand.h
@@ -43,7 +43,7 @@ public:
private:
InsertNodeBeforeCommand(PassRefPtrWillBeRawPtr<Node> childToInsert, PassRefPtrWillBeRawPtr<Node> childToInsertBefore, ShouldAssumeContentIsAlwaysEditable);
- void doApply() override;
+ void doApply(EditingState*) override;
void doUnapply() override;
RefPtrWillBeMember<Node> m_insertChild;

Powered by Google App Engine
This is Rietveld 408576698