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

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

Issue 23567043: Promise init callback takes resolve and reject functions (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 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
« no previous file with comments | « Source/bindings/v8/custom/V8PromiseResolverCustom.cpp ('k') | Source/core/dom/Promise.idl » ('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 'deprecated_perl_core_idl_files': [ 3 'deprecated_perl_core_idl_files': [
4 'css/CSS.idl', 4 'css/CSS.idl',
5 'css/CSSCharsetRule.idl', 5 'css/CSSCharsetRule.idl',
6 'css/CSSFontFaceLoadEvent.idl', 6 'css/CSSFontFaceLoadEvent.idl',
7 'css/CSSFontFaceRule.idl', 7 'css/CSSFontFaceRule.idl',
8 'css/CSSHostRule.idl', 8 'css/CSSHostRule.idl',
9 'css/CSSImportRule.idl', 9 'css/CSSImportRule.idl',
10 'css/CSSKeyframeRule.idl', 10 'css/CSSKeyframeRule.idl',
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 'dom/NodeIterator.idl', 84 'dom/NodeIterator.idl',
85 'dom/NodeList.idl', 85 'dom/NodeList.idl',
86 'dom/Notation.idl', 86 'dom/Notation.idl',
87 'dom/OverflowEvent.idl', 87 'dom/OverflowEvent.idl',
88 'dom/PageTransitionEvent.idl', 88 'dom/PageTransitionEvent.idl',
89 'dom/ParentNode.idl', 89 'dom/ParentNode.idl',
90 'dom/PopStateEvent.idl', 90 'dom/PopStateEvent.idl',
91 'dom/ProcessingInstruction.idl', 91 'dom/ProcessingInstruction.idl',
92 'dom/ProgressEvent.idl', 92 'dom/ProgressEvent.idl',
93 'dom/Promise.idl', 93 'dom/Promise.idl',
94 'dom/PromiseResolver.idl',
95 'dom/Range.idl', 94 'dom/Range.idl',
96 'dom/ResourceProgressEvent.idl', 95 'dom/ResourceProgressEvent.idl',
97 'dom/SecurityPolicyViolationEvent.idl', 96 'dom/SecurityPolicyViolationEvent.idl',
98 'dom/Text.idl', 97 'dom/Text.idl',
99 'dom/TextEvent.idl', 98 'dom/TextEvent.idl',
100 'dom/Touch.idl', 99 'dom/Touch.idl',
101 'dom/TouchEvent.idl', 100 'dom/TouchEvent.idl',
102 'dom/TouchList.idl', 101 'dom/TouchList.idl',
103 'dom/TransitionEvent.idl', 102 'dom/TransitionEvent.idl',
104 'dom/TreeWalker.idl', 103 'dom/TreeWalker.idl',
(...skipping 1857 matching lines...) Expand 10 before | Expand all | Expand 10 after
1962 'dom/Position.cpp', 1961 'dom/Position.cpp',
1963 'dom/PositionIterator.cpp', 1962 'dom/PositionIterator.cpp',
1964 'dom/PositionIterator.h', 1963 'dom/PositionIterator.h',
1965 'dom/ProcessingInstruction.cpp', 1964 'dom/ProcessingInstruction.cpp',
1966 'dom/ProcessingInstruction.h', 1965 'dom/ProcessingInstruction.h',
1967 'dom/ProgressEvent.cpp', 1966 'dom/ProgressEvent.cpp',
1968 'dom/ProgressEvent.h', 1967 'dom/ProgressEvent.h',
1969 'dom/PostAttachCallbacks.cpp', 1968 'dom/PostAttachCallbacks.cpp',
1970 'dom/PostAttachCallbacks.h', 1969 'dom/PostAttachCallbacks.h',
1971 'dom/Promise.h', 1970 'dom/Promise.h',
1972 'dom/PromiseResolver.h',
1973 'dom/PseudoElement.cpp', 1971 'dom/PseudoElement.cpp',
1974 'dom/QualifiedName.cpp', 1972 'dom/QualifiedName.cpp',
1975 'dom/Range.cpp', 1973 'dom/Range.cpp',
1976 'dom/RawDataDocumentParser.h', 1974 'dom/RawDataDocumentParser.h',
1977 'dom/RequestAnimationFrameCallback.h', 1975 'dom/RequestAnimationFrameCallback.h',
1978 'dom/ResourceProgressEvent.cpp', 1976 'dom/ResourceProgressEvent.cpp',
1979 'dom/ResourceProgressEvent.h', 1977 'dom/ResourceProgressEvent.h',
1980 'dom/ScopedEventQueue.cpp', 1978 'dom/ScopedEventQueue.cpp',
1981 'dom/ScopedEventQueue.h', 1979 'dom/ScopedEventQueue.h',
1982 'dom/ScriptExecutionContext.cpp', 1980 'dom/ScriptExecutionContext.cpp',
(...skipping 1909 matching lines...) Expand 10 before | Expand all | Expand 10 after
3892 'bison_exe': 'bison', 3890 'bison_exe': 'bison',
3893 # We specify a preprocess so it happens locally and won't get 3891 # We specify a preprocess so it happens locally and won't get
3894 # distributed to goma. 3892 # distributed to goma.
3895 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to 3893 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to
3896 # use /usr/bin/clang once we require Xcode 4.x. 3894 # use /usr/bin/clang once we require Xcode 4.x.
3897 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"' 3895 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"'
3898 }], 3896 }],
3899 ], 3897 ],
3900 } 3898 }
3901 } 3899 }
OLDNEW
« no previous file with comments | « Source/bindings/v8/custom/V8PromiseResolverCustom.cpp ('k') | Source/core/dom/Promise.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698