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

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

Issue 334713006: Use stricter typing for NodeLists throughout the code base (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix typo 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2005, 2006, 2008, 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2005, 2006, 2008, 2009 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 15 matching lines...) Expand all
26 #include "config.h" 26 #include "config.h"
27 #include "core/editing/ApplyStyleCommand.h" 27 #include "core/editing/ApplyStyleCommand.h"
28 28
29 #include "core/CSSPropertyNames.h" 29 #include "core/CSSPropertyNames.h"
30 #include "core/CSSValueKeywords.h" 30 #include "core/CSSValueKeywords.h"
31 #include "core/HTMLNames.h" 31 #include "core/HTMLNames.h"
32 #include "core/css/CSSComputedStyleDeclaration.h" 32 #include "core/css/CSSComputedStyleDeclaration.h"
33 #include "core/css/CSSValuePool.h" 33 #include "core/css/CSSValuePool.h"
34 #include "core/css/StylePropertySet.h" 34 #include "core/css/StylePropertySet.h"
35 #include "core/dom/Document.h" 35 #include "core/dom/Document.h"
36 #include "core/dom/NodeList.h"
37 #include "core/dom/NodeTraversal.h" 36 #include "core/dom/NodeTraversal.h"
38 #include "core/dom/Range.h" 37 #include "core/dom/Range.h"
39 #include "core/dom/Text.h" 38 #include "core/dom/Text.h"
40 #include "core/editing/EditingStyle.h" 39 #include "core/editing/EditingStyle.h"
41 #include "core/editing/HTMLInterchange.h" 40 #include "core/editing/HTMLInterchange.h"
42 #include "core/editing/PlainTextRange.h" 41 #include "core/editing/PlainTextRange.h"
43 #include "core/editing/TextIterator.h" 42 #include "core/editing/TextIterator.h"
44 #include "core/editing/VisibleUnits.h" 43 #include "core/editing/VisibleUnits.h"
45 #include "core/editing/htmlediting.h" 44 #include "core/editing/htmlediting.h"
46 #include "core/rendering/RenderObject.h" 45 #include "core/rendering/RenderObject.h"
(...skipping 1520 matching lines...) Expand 10 before | Expand all | Expand 10 after
1567 void ApplyStyleCommand::trace(Visitor* visitor) 1566 void ApplyStyleCommand::trace(Visitor* visitor)
1568 { 1567 {
1569 visitor->trace(m_style); 1568 visitor->trace(m_style);
1570 visitor->trace(m_start); 1569 visitor->trace(m_start);
1571 visitor->trace(m_end); 1570 visitor->trace(m_end);
1572 visitor->trace(m_styledInlineElement); 1571 visitor->trace(m_styledInlineElement);
1573 CompositeEditCommand::trace(visitor); 1572 CompositeEditCommand::trace(visitor);
1574 } 1573 }
1575 1574
1576 } 1575 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698