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

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

Issue 2574793002: [Editing] Store |CommandSource| in |CompositeEditCommand| (Closed)
Patch Set: Created 4 years 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/ApplyBlockElementCommand.h
diff --git a/third_party/WebKit/Source/core/editing/commands/ApplyBlockElementCommand.h b/third_party/WebKit/Source/core/editing/commands/ApplyBlockElementCommand.h
index 3eb2e2d7b7602fb57fcd9b65cb14c4df264cca0b..8d86f15e23c641cedf9c66818bd460c332e771dc 100644
--- a/third_party/WebKit/Source/core/editing/commands/ApplyBlockElementCommand.h
+++ b/third_party/WebKit/Source/core/editing/commands/ApplyBlockElementCommand.h
@@ -39,9 +39,12 @@ namespace blink {
class CORE_EXPORT ApplyBlockElementCommand : public CompositeEditCommand {
protected:
ApplyBlockElementCommand(Document&,
+ CommandSource,
const QualifiedName& tagName,
const AtomicString& inlineStyle);
- ApplyBlockElementCommand(Document&, const QualifiedName& tagName);
+ ApplyBlockElementCommand(Document&,
+ CommandSource,
+ const QualifiedName& tagName);
virtual void formatSelection(const VisiblePosition& startOfSelection,
const VisiblePosition& endOfSelection,

Powered by Google App Engine
This is Rietveld 408576698