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

Side by Side Diff: Source/core/editing/ReplaceSelectionCommand.h

Issue 616603006: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/editing (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased the patch Created 6 years, 2 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
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 16 matching lines...) Expand all
27 #define ReplaceSelectionCommand_h 27 #define ReplaceSelectionCommand_h
28 28
29 #include "core/dom/NodeTraversal.h" 29 #include "core/dom/NodeTraversal.h"
30 #include "core/editing/CompositeEditCommand.h" 30 #include "core/editing/CompositeEditCommand.h"
31 31
32 namespace blink { 32 namespace blink {
33 33
34 class DocumentFragment; 34 class DocumentFragment;
35 class ReplacementFragment; 35 class ReplacementFragment;
36 36
37 class ReplaceSelectionCommand FINAL : public CompositeEditCommand { 37 class ReplaceSelectionCommand final : public CompositeEditCommand {
38 public: 38 public:
39 enum CommandOption { 39 enum CommandOption {
40 SelectReplacement = 1 << 0, 40 SelectReplacement = 1 << 0,
41 SmartReplace = 1 << 1, 41 SmartReplace = 1 << 1,
42 MatchStyle = 1 << 2, 42 MatchStyle = 1 << 2,
43 PreventNesting = 1 << 3, 43 PreventNesting = 1 << 3,
44 MovingParagraph = 1 << 4, 44 MovingParagraph = 1 << 4,
45 SanitizeFragment = 1 << 5 45 SanitizeFragment = 1 << 5
46 }; 46 };
47 47
48 typedef unsigned CommandOptions; 48 typedef unsigned CommandOptions;
49 49
50 static PassRefPtrWillBeRawPtr<ReplaceSelectionCommand> create(Document& docu ment, PassRefPtrWillBeRawPtr<DocumentFragment> fragment, CommandOptions options, EditAction action = EditActionPaste) 50 static PassRefPtrWillBeRawPtr<ReplaceSelectionCommand> create(Document& docu ment, PassRefPtrWillBeRawPtr<DocumentFragment> fragment, CommandOptions options, EditAction action = EditActionPaste)
51 { 51 {
52 return adoptRefWillBeNoop(new ReplaceSelectionCommand(document, fragment , options, action)); 52 return adoptRefWillBeNoop(new ReplaceSelectionCommand(document, fragment , options, action));
53 } 53 }
54 54
55 virtual void trace(Visitor*) OVERRIDE; 55 virtual void trace(Visitor*) override;
56 56
57 private: 57 private:
58 ReplaceSelectionCommand(Document&, PassRefPtrWillBeRawPtr<DocumentFragment>, CommandOptions, EditAction); 58 ReplaceSelectionCommand(Document&, PassRefPtrWillBeRawPtr<DocumentFragment>, CommandOptions, EditAction);
59 59
60 virtual void doApply() OVERRIDE; 60 virtual void doApply() override;
61 virtual EditAction editingAction() const OVERRIDE; 61 virtual EditAction editingAction() const override;
62 62
63 class InsertedNodes { 63 class InsertedNodes {
64 STACK_ALLOCATED(); 64 STACK_ALLOCATED();
65 public: 65 public:
66 void respondToNodeInsertion(Node&); 66 void respondToNodeInsertion(Node&);
67 void willRemoveNodePreservingChildren(Node&); 67 void willRemoveNodePreservingChildren(Node&);
68 void willRemoveNode(Node&); 68 void willRemoveNode(Node&);
69 void didReplaceNode(Node&, Node& newNode); 69 void didReplaceNode(Node&, Node& newNode);
70 70
71 Node* firstNodeInserted() const { return m_firstNodeInserted.get(); } 71 Node* firstNodeInserted() const { return m_firstNodeInserted.get(); }
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 bool m_preventNesting; 115 bool m_preventNesting;
116 bool m_movingParagraph; 116 bool m_movingParagraph;
117 EditAction m_editAction; 117 EditAction m_editAction;
118 bool m_sanitizeFragment; 118 bool m_sanitizeFragment;
119 bool m_shouldMergeEnd; 119 bool m_shouldMergeEnd;
120 }; 120 };
121 121
122 } // namespace blink 122 } // namespace blink
123 123
124 #endif // ReplaceSelectionCommand_h 124 #endif // ReplaceSelectionCommand_h
OLDNEW
« no previous file with comments | « Source/core/editing/ReplaceNodeWithSpanCommand.h ('k') | Source/core/editing/ReplaceSelectionCommand.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698