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

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

Issue 210363007: Declare onFinish event handler for AnimationPlayer (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Stop using ContextLifecycleObserver Created 6 years, 8 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
« no previous file with comments | « Source/core/animation/DocumentTimeline.cpp ('k') | Source/core/events/AnimationPlayerEvent.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 '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/AnimationPlayer.idl', 6 'animation/AnimationPlayer.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/DataTransfer.idl', 10 'clipboard/DataTransfer.idl',
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 'dom/Range.idl', 77 'dom/Range.idl',
78 'dom/RequestAnimationFrameCallback.idl', 78 'dom/RequestAnimationFrameCallback.idl',
79 'dom/StringCallback.idl', 79 'dom/StringCallback.idl',
80 'dom/Text.idl', 80 'dom/Text.idl',
81 'dom/Touch.idl', 81 'dom/Touch.idl',
82 'dom/TouchList.idl', 82 'dom/TouchList.idl',
83 'dom/TreeWalker.idl', 83 'dom/TreeWalker.idl',
84 'dom/URL.idl', 84 'dom/URL.idl',
85 'dom/XMLDocument.idl', 85 'dom/XMLDocument.idl',
86 'dom/shadow/ShadowRoot.idl', 86 'dom/shadow/ShadowRoot.idl',
87 'events/AnimationPlayerEvent.idl',
87 'events/ApplicationCacheErrorEvent.idl', 88 'events/ApplicationCacheErrorEvent.idl',
88 'events/AutocompleteErrorEvent.idl', 89 'events/AutocompleteErrorEvent.idl',
89 'events/BeforeUnloadEvent.idl', 90 'events/BeforeUnloadEvent.idl',
90 'events/CompositionEvent.idl', 91 'events/CompositionEvent.idl',
91 'events/CustomEvent.idl', 92 'events/CustomEvent.idl',
92 'events/ErrorEvent.idl', 93 'events/ErrorEvent.idl',
93 'events/Event.idl', 94 'events/Event.idl',
94 'events/EventTarget.idl', 95 'events/EventTarget.idl',
95 'events/FocusEvent.idl', 96 'events/FocusEvent.idl',
96 'events/HashChangeEvent.idl', 97 'events/HashChangeEvent.idl',
(...skipping 2034 matching lines...) Expand 10 before | Expand all | Expand 10 after
2131 'dom/TreeWalker.cpp', 2132 'dom/TreeWalker.cpp',
2132 'dom/TreeWalker.h', 2133 'dom/TreeWalker.h',
2133 'dom/UserActionElementSet.cpp', 2134 'dom/UserActionElementSet.cpp',
2134 'dom/UserActionElementSet.h', 2135 'dom/UserActionElementSet.h',
2135 'dom/ViewportDescription.cpp', 2136 'dom/ViewportDescription.cpp',
2136 'dom/ViewportDescription.h', 2137 'dom/ViewportDescription.h',
2137 'dom/VisitedLinkState.cpp', 2138 'dom/VisitedLinkState.cpp',
2138 'dom/VisitedLinkState.h', 2139 'dom/VisitedLinkState.h',
2139 'dom/WheelController.cpp', 2140 'dom/WheelController.cpp',
2140 'dom/WheelController.h', 2141 'dom/WheelController.h',
2142 'events/AnimationPlayerEvent.cpp',
2143 'events/AnimationPlayerEvent.h',
2141 'events/ApplicationCacheErrorEvent.cpp', 2144 'events/ApplicationCacheErrorEvent.cpp',
2142 'events/ApplicationCacheErrorEvent.h', 2145 'events/ApplicationCacheErrorEvent.h',
2143 'events/AutocompleteErrorEvent.h', 2146 'events/AutocompleteErrorEvent.h',
2144 'events/BeforeTextInsertedEvent.cpp', 2147 'events/BeforeTextInsertedEvent.cpp',
2145 'events/BeforeTextInsertedEvent.h', 2148 'events/BeforeTextInsertedEvent.h',
2146 'events/BeforeUnloadEvent.cpp', 2149 'events/BeforeUnloadEvent.cpp',
2147 'events/BeforeUnloadEvent.h', 2150 'events/BeforeUnloadEvent.h',
2148 'events/ClipboardEvent.cpp', 2151 'events/ClipboardEvent.cpp',
2149 'events/ClipboardEvent.h', 2152 'events/ClipboardEvent.h',
2150 'events/CompositionEvent.cpp', 2153 'events/CompositionEvent.cpp',
(...skipping 1176 matching lines...) Expand 10 before | Expand all | Expand 10 after
3327 'html/track/vtt/BufferedLineReaderTest.cpp', 3330 'html/track/vtt/BufferedLineReaderTest.cpp',
3328 'html/track/vtt/VTTScannerTest.cpp', 3331 'html/track/vtt/VTTScannerTest.cpp',
3329 'rendering/RenderOverflowTest.cpp', 3332 'rendering/RenderOverflowTest.cpp',
3330 'rendering/shapes/BoxShapeTest.cpp', 3333 'rendering/shapes/BoxShapeTest.cpp',
3331 'testing/UnitTestHelpers.cpp', 3334 'testing/UnitTestHelpers.cpp',
3332 'testing/UnitTestHelpers.h', 3335 'testing/UnitTestHelpers.h',
3333 'xml/parser/SharedBufferReaderTest.cpp', 3336 'xml/parser/SharedBufferReaderTest.cpp',
3334 ], 3337 ],
3335 } 3338 }
3336 } 3339 }
OLDNEW
« no previous file with comments | « Source/core/animation/DocumentTimeline.cpp ('k') | Source/core/events/AnimationPlayerEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698