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

Side by Side Diff: Source/core/editing/CompositeEditCommand.cpp

Issue 1293683003: Move DocumentMarker related files to editing/markers/ from dom/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 2015-08-14T15:39:22 Created 5 years, 4 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, 2007, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2005, 2006, 2007, 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 12 matching lines...) Expand all
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */ 24 */
25 25
26 #include "config.h" 26 #include "config.h"
27 #include "core/editing/CompositeEditCommand.h" 27 #include "core/editing/CompositeEditCommand.h"
28 28
29 #include "bindings/core/v8/ExceptionStatePlaceholder.h" 29 #include "bindings/core/v8/ExceptionStatePlaceholder.h"
30 #include "core/HTMLNames.h" 30 #include "core/HTMLNames.h"
31 #include "core/dom/Document.h" 31 #include "core/dom/Document.h"
32 #include "core/dom/DocumentFragment.h" 32 #include "core/dom/DocumentFragment.h"
33 #include "core/dom/DocumentMarkerController.h"
34 #include "core/dom/ElementTraversal.h" 33 #include "core/dom/ElementTraversal.h"
35 #include "core/dom/NodeTraversal.h" 34 #include "core/dom/NodeTraversal.h"
36 #include "core/dom/Range.h" 35 #include "core/dom/Range.h"
37 #include "core/dom/Text.h" 36 #include "core/dom/Text.h"
38 #include "core/editing/AppendNodeCommand.h" 37 #include "core/editing/AppendNodeCommand.h"
39 #include "core/editing/ApplyStyleCommand.h" 38 #include "core/editing/ApplyStyleCommand.h"
40 #include "core/editing/DeleteFromTextNodeCommand.h" 39 #include "core/editing/DeleteFromTextNodeCommand.h"
41 #include "core/editing/DeleteSelectionCommand.h" 40 #include "core/editing/DeleteSelectionCommand.h"
41 #include "core/editing/DocumentMarkerController.h"
42 #include "core/editing/EditingUtilities.h" 42 #include "core/editing/EditingUtilities.h"
43 #include "core/editing/Editor.h" 43 #include "core/editing/Editor.h"
44 #include "core/editing/InsertIntoTextNodeCommand.h" 44 #include "core/editing/InsertIntoTextNodeCommand.h"
45 #include "core/editing/InsertLineBreakCommand.h" 45 #include "core/editing/InsertLineBreakCommand.h"
46 #include "core/editing/InsertNodeBeforeCommand.h" 46 #include "core/editing/InsertNodeBeforeCommand.h"
47 #include "core/editing/InsertParagraphSeparatorCommand.h" 47 #include "core/editing/InsertParagraphSeparatorCommand.h"
48 #include "core/editing/MergeIdenticalElementsCommand.h" 48 #include "core/editing/MergeIdenticalElementsCommand.h"
49 #include "core/editing/PlainTextRange.h" 49 #include "core/editing/PlainTextRange.h"
50 #include "core/editing/RemoveCSSPropertyCommand.h" 50 #include "core/editing/RemoveCSSPropertyCommand.h"
51 #include "core/editing/RemoveNodeCommand.h" 51 #include "core/editing/RemoveNodeCommand.h"
(...skipping 1447 matching lines...) Expand 10 before | Expand all | Expand 10 after
1499 } 1499 }
1500 1500
1501 DEFINE_TRACE(CompositeEditCommand) 1501 DEFINE_TRACE(CompositeEditCommand)
1502 { 1502 {
1503 visitor->trace(m_commands); 1503 visitor->trace(m_commands);
1504 visitor->trace(m_composition); 1504 visitor->trace(m_composition);
1505 EditCommand::trace(visitor); 1505 EditCommand::trace(visitor);
1506 } 1506 }
1507 1507
1508 } // namespace blink 1508 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698