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

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

Issue 334713006: Use stricter typing for NodeLists throughout the code base (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 6 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/dom/shadow/InsertionPoint.cpp ('k') | Source/core/events/Event.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 22 matching lines...) Expand all
33 #include "core/HTMLNames.h" 33 #include "core/HTMLNames.h"
34 #include "core/XLinkNames.h" 34 #include "core/XLinkNames.h"
35 #include "core/accessibility/AXObjectCache.h" 35 #include "core/accessibility/AXObjectCache.h"
36 #include "core/clipboard/Clipboard.h" 36 #include "core/clipboard/Clipboard.h"
37 #include "core/clipboard/DataObject.h" 37 #include "core/clipboard/DataObject.h"
38 #include "core/clipboard/Pasteboard.h" 38 #include "core/clipboard/Pasteboard.h"
39 #include "core/css/CSSComputedStyleDeclaration.h" 39 #include "core/css/CSSComputedStyleDeclaration.h"
40 #include "core/css/StylePropertySet.h" 40 #include "core/css/StylePropertySet.h"
41 #include "core/dom/DocumentFragment.h" 41 #include "core/dom/DocumentFragment.h"
42 #include "core/dom/DocumentMarkerController.h" 42 #include "core/dom/DocumentMarkerController.h"
43 #include "core/dom/NodeList.h"
44 #include "core/dom/NodeTraversal.h" 43 #include "core/dom/NodeTraversal.h"
45 #include "core/dom/ParserContentPolicy.h" 44 #include "core/dom/ParserContentPolicy.h"
46 #include "core/dom/Text.h" 45 #include "core/dom/Text.h"
47 #include "core/editing/ApplyStyleCommand.h" 46 #include "core/editing/ApplyStyleCommand.h"
48 #include "core/editing/DeleteSelectionCommand.h" 47 #include "core/editing/DeleteSelectionCommand.h"
49 #include "core/editing/IndentOutdentCommand.h" 48 #include "core/editing/IndentOutdentCommand.h"
50 #include "core/editing/InputMethodController.h" 49 #include "core/editing/InputMethodController.h"
51 #include "core/editing/InsertListCommand.h" 50 #include "core/editing/InsertListCommand.h"
52 #include "core/editing/RemoveFormatCommand.h" 51 #include "core/editing/RemoveFormatCommand.h"
53 #include "core/editing/RenderedPosition.h" 52 #include "core/editing/RenderedPosition.h"
(...skipping 1248 matching lines...) Expand 10 before | Expand all | Expand 10 after
1302 frame().selection().setShouldShowBlockCursor(m_overwriteModeEnabled); 1301 frame().selection().setShouldShowBlockCursor(m_overwriteModeEnabled);
1303 } 1302 }
1304 1303
1305 void Editor::trace(Visitor* visitor) 1304 void Editor::trace(Visitor* visitor)
1306 { 1305 {
1307 visitor->trace(m_lastEditCommand); 1306 visitor->trace(m_lastEditCommand);
1308 visitor->trace(m_mark); 1307 visitor->trace(m_mark);
1309 } 1308 }
1310 1309
1311 } // namespace WebCore 1310 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/dom/shadow/InsertionPoint.cpp ('k') | Source/core/events/Event.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698