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

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

Issue 119143002: Introduce VTTScanner - a parser helper for various VTT parsing needs (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: struct Run -> class Run; explicit constructor; make non-copyable. Created 6 years, 11 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 | « no previous file | Source/core/html/track/vtt/VTTParser.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 'core_idl_files': [ 3 'core_idl_files': [
4 'animation/ElementAnimation.idl', 4 'animation/ElementAnimation.idl',
5 'css/CSS.idl', 5 'css/CSS.idl',
6 'css/CSSCharsetRule.idl', 6 'css/CSSCharsetRule.idl',
7 'css/CSSFontFaceLoadEvent.idl', 7 'css/CSSFontFaceLoadEvent.idl',
8 'css/CSSFontFaceRule.idl', 8 'css/CSSFontFaceRule.idl',
9 'css/CSSImportRule.idl', 9 'css/CSSImportRule.idl',
10 'css/CSSKeyframeRule.idl', 10 'css/CSSKeyframeRule.idl',
(...skipping 2664 matching lines...) Expand 10 before | Expand all | Expand 10 after
2675 'html/track/vtt/VTTCue.cpp', 2675 'html/track/vtt/VTTCue.cpp',
2676 'html/track/vtt/VTTCue.h', 2676 'html/track/vtt/VTTCue.h',
2677 'html/track/vtt/VTTElement.cpp', 2677 'html/track/vtt/VTTElement.cpp',
2678 'html/track/vtt/VTTElement.h', 2678 'html/track/vtt/VTTElement.h',
2679 'html/track/vtt/VTTParser.cpp', 2679 'html/track/vtt/VTTParser.cpp',
2680 'html/track/vtt/VTTParser.h', 2680 'html/track/vtt/VTTParser.h',
2681 'html/track/vtt/VTTRegion.cpp', 2681 'html/track/vtt/VTTRegion.cpp',
2682 'html/track/vtt/VTTRegion.h', 2682 'html/track/vtt/VTTRegion.h',
2683 'html/track/vtt/VTTRegionList.cpp', 2683 'html/track/vtt/VTTRegionList.cpp',
2684 'html/track/vtt/VTTRegionList.h', 2684 'html/track/vtt/VTTRegionList.h',
2685 'html/track/vtt/VTTScanner.cpp',
2686 'html/track/vtt/VTTScanner.h',
2685 'html/track/vtt/VTTToken.h', 2687 'html/track/vtt/VTTToken.h',
2686 'html/track/vtt/VTTTokenizer.cpp', 2688 'html/track/vtt/VTTTokenizer.cpp',
2687 'html/track/vtt/VTTTokenizer.h', 2689 'html/track/vtt/VTTTokenizer.h',
2688 ], 2690 ],
2689 'webcore_platform_files': [ 2691 'webcore_platform_files': [
2690 'platform/DragImage.cpp', 2692 'platform/DragImage.cpp',
2691 'platform/Pasteboard.cpp', 2693 'platform/Pasteboard.cpp',
2692 'platform/Pasteboard.h', 2694 'platform/Pasteboard.h',
2693 'platform/animation/AnimationTranslationUtil.cpp', 2695 'platform/animation/AnimationTranslationUtil.cpp',
2694 'platform/animation/AnimationTranslationUtil.h', 2696 'platform/animation/AnimationTranslationUtil.h',
(...skipping 548 matching lines...) Expand 10 before | Expand all | Expand 10 after
3243 'editing/TextIteratorTest.cpp', 3245 'editing/TextIteratorTest.cpp',
3244 'dom/MainThreadTaskRunnerTest.cpp', 3246 'dom/MainThreadTaskRunnerTest.cpp',
3245 'fetch/ImageResourceTest.cpp', 3247 'fetch/ImageResourceTest.cpp',
3246 'fetch/MemoryCacheTest.cpp', 3248 'fetch/MemoryCacheTest.cpp',
3247 'fetch/RawResourceTest.cpp', 3249 'fetch/RawResourceTest.cpp',
3248 'fetch/ResourceFetcherTest.cpp', 3250 'fetch/ResourceFetcherTest.cpp',
3249 'html/HTMLDimensionTest.cpp', 3251 'html/HTMLDimensionTest.cpp',
3250 'html/LinkRelAttributeTest.cpp', 3252 'html/LinkRelAttributeTest.cpp',
3251 'html/TimeRangesTest.cpp', 3253 'html/TimeRangesTest.cpp',
3252 'html/track/vtt/BufferedLineReaderTest.cpp', 3254 'html/track/vtt/BufferedLineReaderTest.cpp',
3255 'html/track/vtt/VTTScannerTest.cpp',
3253 'frame/ImageBitmapTest.cpp', 3256 'frame/ImageBitmapTest.cpp',
3254 'platform/animation/AnimationTranslationUtilTest.cpp', 3257 'platform/animation/AnimationTranslationUtilTest.cpp',
3255 'platform/animation/TimingFunctionTestHelper.h', 3258 'platform/animation/TimingFunctionTestHelper.h',
3256 'platform/animation/TimingFunctionTestHelper.cpp', 3259 'platform/animation/TimingFunctionTestHelper.cpp',
3257 'platform/animation/TimingFunctionTestHelperTest.cpp', 3260 'platform/animation/TimingFunctionTestHelperTest.cpp',
3258 'rendering/RenderOverflowTest.cpp', 3261 'rendering/RenderOverflowTest.cpp',
3259 'rendering/shapes/BoxShapeTest.cpp', 3262 'rendering/shapes/BoxShapeTest.cpp',
3260 'testing/UnitTestHelpers.h', 3263 'testing/UnitTestHelpers.h',
3261 'testing/UnitTestHelpers.cpp', 3264 'testing/UnitTestHelpers.cpp',
3262 ], 3265 ],
3263 } 3266 }
3264 } 3267 }
OLDNEW
« no previous file with comments | « no previous file | Source/core/html/track/vtt/VTTParser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698