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

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

Issue 1294543005: Move execCommand related files in core/editing/ related files into core/editing/commands/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 2015-08-18T14:20:58 Rebase for merging code style fixes 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) 2006, 2007, 2008, 2011 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008, 2011 Apple Inc. All rights reserved.
3 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) 3 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 24 matching lines...) Expand all
35 #include "core/clipboard/DataObject.h" 35 #include "core/clipboard/DataObject.h"
36 #include "core/clipboard/DataTransfer.h" 36 #include "core/clipboard/DataTransfer.h"
37 #include "core/clipboard/Pasteboard.h" 37 #include "core/clipboard/Pasteboard.h"
38 #include "core/css/CSSComputedStyleDeclaration.h" 38 #include "core/css/CSSComputedStyleDeclaration.h"
39 #include "core/css/StylePropertySet.h" 39 #include "core/css/StylePropertySet.h"
40 #include "core/dom/AXObjectCache.h" 40 #include "core/dom/AXObjectCache.h"
41 #include "core/dom/DocumentFragment.h" 41 #include "core/dom/DocumentFragment.h"
42 #include "core/dom/NodeTraversal.h" 42 #include "core/dom/NodeTraversal.h"
43 #include "core/dom/ParserContentPolicy.h" 43 #include "core/dom/ParserContentPolicy.h"
44 #include "core/dom/Text.h" 44 #include "core/dom/Text.h"
45 #include "core/editing/ApplyStyleCommand.h"
46 #include "core/editing/DeleteSelectionCommand.h"
47 #include "core/editing/EditingUtilities.h" 45 #include "core/editing/EditingUtilities.h"
48 #include "core/editing/IndentOutdentCommand.h"
49 #include "core/editing/InputMethodController.h" 46 #include "core/editing/InputMethodController.h"
50 #include "core/editing/InsertListCommand.h"
51 #include "core/editing/RemoveFormatCommand.h"
52 #include "core/editing/RenderedPosition.h" 47 #include "core/editing/RenderedPosition.h"
53 #include "core/editing/ReplaceSelectionCommand.h"
54 #include "core/editing/SimplifyMarkupCommand.h"
55 #include "core/editing/TypingCommand.h"
56 #include "core/editing/UndoStack.h"
57 #include "core/editing/VisibleUnits.h" 48 #include "core/editing/VisibleUnits.h"
49 #include "core/editing/commands/ApplyStyleCommand.h"
50 #include "core/editing/commands/DeleteSelectionCommand.h"
51 #include "core/editing/commands/IndentOutdentCommand.h"
52 #include "core/editing/commands/InsertListCommand.h"
53 #include "core/editing/commands/RemoveFormatCommand.h"
54 #include "core/editing/commands/ReplaceSelectionCommand.h"
55 #include "core/editing/commands/SimplifyMarkupCommand.h"
56 #include "core/editing/commands/TypingCommand.h"
57 #include "core/editing/commands/UndoStack.h"
58 #include "core/editing/iterators/SearchBuffer.h" 58 #include "core/editing/iterators/SearchBuffer.h"
59 #include "core/editing/markers/DocumentMarkerController.h" 59 #include "core/editing/markers/DocumentMarkerController.h"
60 #include "core/editing/serializers/Serialization.h" 60 #include "core/editing/serializers/Serialization.h"
61 #include "core/editing/spellcheck/SpellChecker.h" 61 #include "core/editing/spellcheck/SpellChecker.h"
62 #include "core/events/ClipboardEvent.h" 62 #include "core/events/ClipboardEvent.h"
63 #include "core/events/KeyboardEvent.h" 63 #include "core/events/KeyboardEvent.h"
64 #include "core/events/ScopedEventQueue.h" 64 #include "core/events/ScopedEventQueue.h"
65 #include "core/events/TextEvent.h" 65 #include "core/events/TextEvent.h"
66 #include "core/fetch/ImageResource.h" 66 #include "core/fetch/ImageResource.h"
67 #include "core/fetch/ResourceFetcher.h" 67 #include "core/fetch/ResourceFetcher.h"
(...skipping 1228 matching lines...) Expand 10 before | Expand all | Expand 10 after
1296 } 1296 }
1297 1297
1298 DEFINE_TRACE(Editor) 1298 DEFINE_TRACE(Editor)
1299 { 1299 {
1300 visitor->trace(m_frame); 1300 visitor->trace(m_frame);
1301 visitor->trace(m_lastEditCommand); 1301 visitor->trace(m_lastEditCommand);
1302 visitor->trace(m_mark); 1302 visitor->trace(m_mark);
1303 } 1303 }
1304 1304
1305 } // namespace blink 1305 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698