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

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

Issue 1257253004: [HTMLCanvasElement.toBlob] Default callback version without scheduler (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: A small change from thread safe bind to common bind based on Kinuko's review Created 5 years, 3 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
OLDNEW
1 { 1 {
2 'includes': [ 2 'includes': [
3 'core_generated.gypi', 3 'core_generated.gypi',
4 ], 4 ],
5 'variables': { 5 'variables': {
6 # Files for which bindings (.cpp and .h files) will be generated 6 # Files for which bindings (.cpp and .h files) will be generated
7 'core_idl_files': [ 7 'core_idl_files': [
8 'animation/KeyframeEffect.idl', 8 'animation/KeyframeEffect.idl',
9 'animation/EffectModel.idl', 9 'animation/EffectModel.idl',
10 'animation/AnimationEffectReadOnly.idl', 10 'animation/AnimationEffectReadOnly.idl',
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 'events/RelatedEvent.idl', 123 'events/RelatedEvent.idl',
124 'events/ResourceProgressEvent.idl', 124 'events/ResourceProgressEvent.idl',
125 'events/SecurityPolicyViolationEvent.idl', 125 'events/SecurityPolicyViolationEvent.idl',
126 'events/TextEvent.idl', 126 'events/TextEvent.idl',
127 'events/TouchEvent.idl', 127 'events/TouchEvent.idl',
128 'events/TransitionEvent.idl', 128 'events/TransitionEvent.idl',
129 'events/UIEvent.idl', 129 'events/UIEvent.idl',
130 'events/WheelEvent.idl', 130 'events/WheelEvent.idl',
131 'fileapi/Blob.idl', 131 'fileapi/Blob.idl',
132 'fileapi/File.idl', 132 'fileapi/File.idl',
133 'fileapi/FileCallback.idl',
133 'fileapi/FileError.idl', 134 'fileapi/FileError.idl',
134 'fileapi/FileList.idl', 135 'fileapi/FileList.idl',
135 'fileapi/FileReader.idl', 136 'fileapi/FileReader.idl',
136 'fileapi/FileReaderSync.idl', 137 'fileapi/FileReaderSync.idl',
137 'frame/BarProp.idl', 138 'frame/BarProp.idl',
138 'frame/Console.idl', 139 'frame/Console.idl',
139 'frame/ConsoleBase.idl', 140 'frame/ConsoleBase.idl',
140 'frame/History.idl', 141 'frame/History.idl',
141 'frame/ImageBitmap.idl', 142 'frame/ImageBitmap.idl',
142 'frame/Location.idl', 143 'frame/Location.idl',
(...skipping 1333 matching lines...) Expand 10 before | Expand all | Expand 10 after
1476 'fetch/TextResource.cpp', 1477 'fetch/TextResource.cpp',
1477 'fetch/TextResource.h', 1478 'fetch/TextResource.h',
1478 'fetch/UniqueIdentifier.cpp', 1479 'fetch/UniqueIdentifier.cpp',
1479 'fetch/UniqueIdentifier.h', 1480 'fetch/UniqueIdentifier.h',
1480 'fetch/XSLStyleSheetResource.cpp', 1481 'fetch/XSLStyleSheetResource.cpp',
1481 'fetch/XSLStyleSheetResource.h', 1482 'fetch/XSLStyleSheetResource.h',
1482 'fileapi/Blob.cpp', 1483 'fileapi/Blob.cpp',
1483 'fileapi/Blob.h', 1484 'fileapi/Blob.h',
1484 'fileapi/File.cpp', 1485 'fileapi/File.cpp',
1485 'fileapi/File.h', 1486 'fileapi/File.h',
1487 'fileapi/FileCallback.h',
1486 'fileapi/FileError.cpp', 1488 'fileapi/FileError.cpp',
1487 'fileapi/FileError.h', 1489 'fileapi/FileError.h',
1488 'fileapi/FileList.cpp', 1490 'fileapi/FileList.cpp',
1489 'fileapi/FileList.h', 1491 'fileapi/FileList.h',
1490 'fileapi/FileReader.cpp', 1492 'fileapi/FileReader.cpp',
1491 'fileapi/FileReader.h', 1493 'fileapi/FileReader.h',
1492 'fileapi/FileReaderLoader.cpp', 1494 'fileapi/FileReaderLoader.cpp',
1493 'fileapi/FileReaderLoader.h', 1495 'fileapi/FileReaderLoader.h',
1494 'fileapi/FileReaderLoaderClient.h', 1496 'fileapi/FileReaderLoaderClient.h',
1495 'fileapi/FileReaderSync.cpp', 1497 'fileapi/FileReaderSync.cpp',
(...skipping 2359 matching lines...) Expand 10 before | Expand all | Expand 10 after
3855 'style/OutlineValueTest.cpp', 3857 'style/OutlineValueTest.cpp',
3856 'style/SVGComputedStyleTest.cpp', 3858 'style/SVGComputedStyleTest.cpp',
3857 'svg/UnsafeSVGAttributeSanitizationTest.cpp', 3859 'svg/UnsafeSVGAttributeSanitizationTest.cpp',
3858 'testing/PrivateScriptTestTest.cpp', 3860 'testing/PrivateScriptTestTest.cpp',
3859 'timing/MemoryInfoTest.cpp', 3861 'timing/MemoryInfoTest.cpp',
3860 'workers/WorkerThreadTest.cpp', 3862 'workers/WorkerThreadTest.cpp',
3861 'xml/parser/SharedBufferReaderTest.cpp', 3863 'xml/parser/SharedBufferReaderTest.cpp',
3862 ], 3864 ],
3863 } 3865 }
3864 } 3866 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698