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

Side by Side Diff: Source/core/core.gypi

Issue 179333004: Add template parameter to ElementTraversal to iterate over Elements of a specific type (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix failures and port more code to the new API Created 6 years, 9 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/build/scripts/templates/ElementTypeHelpers.h.tmpl ('k') | Source/core/dom/Document.cpp » ('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 'variables': { 2 'variables': {
3 # Files for which bindings (.cpp and .h files) will be generated 3 # Files for which bindings (.cpp and .h files) will be generated
4 'core_idl_files': [ 4 'core_idl_files': [
5 'animation/Animation.idl', 5 'animation/Animation.idl',
6 'animation/Player.idl', 6 'animation/Player.idl',
7 'animation/TimedItem.idl', 7 'animation/TimedItem.idl',
8 'animation/Timeline.idl', 8 'animation/Timeline.idl',
9 'animation/Timing.idl', 9 'animation/Timing.idl',
10 'clipboard/Clipboard.idl', 10 'clipboard/Clipboard.idl',
(...skipping 1944 matching lines...) Expand 10 before | Expand all | Expand 10 after
1955 'dom/NameNodeList.h', 1955 'dom/NameNodeList.h',
1956 'dom/Node.cpp', 1956 'dom/Node.cpp',
1957 'dom/NodeChildRemovalTracker.h', 1957 'dom/NodeChildRemovalTracker.h',
1958 'dom/NodeChildRemovalTracker.cpp', 1958 'dom/NodeChildRemovalTracker.cpp',
1959 'dom/NodeFilter.cpp', 1959 'dom/NodeFilter.cpp',
1960 'dom/NodeFilter.h', 1960 'dom/NodeFilter.h',
1961 'dom/NodeFilterCondition.cpp', 1961 'dom/NodeFilterCondition.cpp',
1962 'dom/NodeFilterCondition.h', 1962 'dom/NodeFilterCondition.h',
1963 'dom/NodeIterator.cpp', 1963 'dom/NodeIterator.cpp',
1964 'dom/NodeIterator.h', 1964 'dom/NodeIterator.h',
1965 'dom/NodeIteratorBase.cpp',
1966 'dom/NodeIteratorBase.h',
1965 'dom/NodeRareData.cpp', 1967 'dom/NodeRareData.cpp',
1966 'dom/NodeRareData.h', 1968 'dom/NodeRareData.h',
1967 'dom/RenderTreeBuilder.cpp', 1969 'dom/RenderTreeBuilder.cpp',
1968 'dom/RenderTreeBuilder.h', 1970 'dom/RenderTreeBuilder.h',
1969 'dom/NodeRenderingTraversal.cpp', 1971 'dom/NodeRenderingTraversal.cpp',
1970 'dom/NodeRenderingTraversal.h', 1972 'dom/NodeRenderingTraversal.h',
1971 'dom/NodeRenderStyle.h', 1973 'dom/NodeRenderStyle.h',
1972 'dom/NodeTraversal.cpp', 1974 'dom/NodeTraversal.cpp',
1973 'dom/NodeTraversal.h', 1975 'dom/NodeTraversal.h',
1974 'dom/NodeWithIndex.h', 1976 'dom/NodeWithIndex.h',
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
2076 'dom/TagCollection.h', 2078 'dom/TagCollection.h',
2077 'dom/Text.cpp', 2079 'dom/Text.cpp',
2078 'dom/TextLinkColors.cpp', 2080 'dom/TextLinkColors.cpp',
2079 'dom/TextLinkColors.h', 2081 'dom/TextLinkColors.h',
2080 'dom/Touch.cpp', 2082 'dom/Touch.cpp',
2081 'dom/Touch.h', 2083 'dom/Touch.h',
2082 'dom/TouchList.cpp', 2084 'dom/TouchList.cpp',
2083 'dom/TouchList.h', 2085 'dom/TouchList.h',
2084 'dom/TransformSource.h', 2086 'dom/TransformSource.h',
2085 'dom/TransformSourceLibxslt.cpp', 2087 'dom/TransformSourceLibxslt.cpp',
2086 'dom/Traversal.cpp',
2087 'dom/Traversal.h',
2088 'dom/TreeScope.cpp', 2088 'dom/TreeScope.cpp',
2089 'dom/TreeScope.h', 2089 'dom/TreeScope.h',
2090 'dom/TreeScopeAdopter.cpp', 2090 'dom/TreeScopeAdopter.cpp',
2091 'dom/TreeScopeAdopter.h', 2091 'dom/TreeScopeAdopter.h',
2092 'dom/TreeScopeStyleSheetCollection.cpp', 2092 'dom/TreeScopeStyleSheetCollection.cpp',
2093 'dom/TreeScopeStyleSheetCollection.h', 2093 'dom/TreeScopeStyleSheetCollection.h',
2094 'dom/TreeShared.h', 2094 'dom/TreeShared.h',
2095 'dom/TreeWalker.cpp', 2095 'dom/TreeWalker.cpp',
2096 'dom/TreeWalker.h', 2096 'dom/TreeWalker.h',
2097 'dom/UserActionElementSet.cpp', 2097 'dom/UserActionElementSet.cpp',
(...skipping 1185 matching lines...) Expand 10 before | Expand all | Expand 10 after
3283 'html/parser/HTMLParserThreadTest.cpp', 3283 'html/parser/HTMLParserThreadTest.cpp',
3284 'html/track/vtt/BufferedLineReaderTest.cpp', 3284 'html/track/vtt/BufferedLineReaderTest.cpp',
3285 'html/track/vtt/VTTScannerTest.cpp', 3285 'html/track/vtt/VTTScannerTest.cpp',
3286 'rendering/RenderOverflowTest.cpp', 3286 'rendering/RenderOverflowTest.cpp',
3287 'rendering/shapes/BoxShapeTest.cpp', 3287 'rendering/shapes/BoxShapeTest.cpp',
3288 'testing/UnitTestHelpers.cpp', 3288 'testing/UnitTestHelpers.cpp',
3289 'testing/UnitTestHelpers.h', 3289 'testing/UnitTestHelpers.h',
3290 ], 3290 ],
3291 } 3291 }
3292 } 3292 }
OLDNEW
« no previous file with comments | « Source/build/scripts/templates/ElementTypeHelpers.h.tmpl ('k') | Source/core/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698