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

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

Issue 1770523002: Track connected subframes per-Document instead of per-Node. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix various crashes but still doesn't refcount tracked nodes (and needs to) Created 4 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/dom/ChildFrameDisconnector.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 '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 2291 matching lines...) Expand 10 before | Expand all | Expand 10 after
2302 'dom/AXObjectCache.h', 2302 'dom/AXObjectCache.h',
2303 'dom/ActiveDOMObject.cpp', 2303 'dom/ActiveDOMObject.cpp',
2304 'dom/AddConsoleMessageTask.cpp', 2304 'dom/AddConsoleMessageTask.cpp',
2305 'dom/AddConsoleMessageTask.h', 2305 'dom/AddConsoleMessageTask.h',
2306 'dom/Attr.cpp', 2306 'dom/Attr.cpp',
2307 'dom/AttributeCollection.h', 2307 'dom/AttributeCollection.h',
2308 'dom/CDATASection.cpp', 2308 'dom/CDATASection.cpp',
2309 'dom/CDATASection.h', 2309 'dom/CDATASection.h',
2310 'dom/CSSSelectorWatch.cpp', 2310 'dom/CSSSelectorWatch.cpp',
2311 'dom/CharacterData.cpp', 2311 'dom/CharacterData.cpp',
2312 'dom/ChildFrameDisconnector.cpp',
2313 'dom/ChildFrameDisconnector.h',
2314 'dom/ChildListMutationScope.cpp', 2312 'dom/ChildListMutationScope.cpp',
2315 'dom/ChildListMutationScope.h', 2313 'dom/ChildListMutationScope.h',
2316 'dom/ChildNodeList.cpp', 2314 'dom/ChildNodeList.cpp',
2317 'dom/ChildNodeList.h', 2315 'dom/ChildNodeList.h',
2318 'dom/ClassCollection.cpp', 2316 'dom/ClassCollection.cpp',
2319 'dom/ClassCollection.h', 2317 'dom/ClassCollection.h',
2320 'dom/ClientRect.cpp', 2318 'dom/ClientRect.cpp',
2321 'dom/ClientRect.h', 2319 'dom/ClientRect.h',
2322 'dom/ClientRectList.cpp', 2320 'dom/ClientRectList.cpp',
2323 'dom/ClientRectList.h', 2321 'dom/ClientRectList.h',
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
2545 'dom/StyleChangeReason.cpp', 2543 'dom/StyleChangeReason.cpp',
2546 'dom/StyleChangeReason.h', 2544 'dom/StyleChangeReason.h',
2547 'dom/StyleElement.cpp', 2545 'dom/StyleElement.cpp',
2548 'dom/StyleElement.h', 2546 'dom/StyleElement.h',
2549 'dom/StyleEngine.cpp', 2547 'dom/StyleEngine.cpp',
2550 'dom/StyleEngine.h', 2548 'dom/StyleEngine.h',
2551 'dom/StyleSheetCandidate.cpp', 2549 'dom/StyleSheetCandidate.cpp',
2552 'dom/StyleSheetCandidate.h', 2550 'dom/StyleSheetCandidate.h',
2553 'dom/StyleSheetCollection.cpp', 2551 'dom/StyleSheetCollection.cpp',
2554 'dom/StyleSheetCollection.h', 2552 'dom/StyleSheetCollection.h',
2553 'dom/SubframeTracker.cpp',
2554 'dom/SubframeTracker.h',
2555 'dom/Suborigin.cpp', 2555 'dom/Suborigin.cpp',
2556 'dom/Suborigin.h', 2556 'dom/Suborigin.h',
2557 'dom/TagCollection.cpp', 2557 'dom/TagCollection.cpp',
2558 'dom/TagCollection.h', 2558 'dom/TagCollection.h',
2559 'dom/Text.cpp', 2559 'dom/Text.cpp',
2560 'dom/TextLinkColors.cpp', 2560 'dom/TextLinkColors.cpp',
2561 'dom/TextLinkColors.h', 2561 'dom/TextLinkColors.h',
2562 'dom/Touch.cpp', 2562 'dom/Touch.cpp',
2563 'dom/Touch.h', 2563 'dom/Touch.h',
2564 'dom/TouchList.cpp', 2564 'dom/TouchList.cpp',
(...skipping 1489 matching lines...) Expand 10 before | Expand all | Expand 10 after
4054 'style/SVGComputedStyleTest.cpp', 4054 'style/SVGComputedStyleTest.cpp',
4055 'svg/SVGPathParserTest.cpp', 4055 'svg/SVGPathParserTest.cpp',
4056 'svg/UnsafeSVGAttributeSanitizationTest.cpp', 4056 'svg/UnsafeSVGAttributeSanitizationTest.cpp',
4057 'testing/PrivateScriptTestTest.cpp', 4057 'testing/PrivateScriptTestTest.cpp',
4058 'timing/MemoryInfoTest.cpp', 4058 'timing/MemoryInfoTest.cpp',
4059 'workers/WorkerThreadTest.cpp', 4059 'workers/WorkerThreadTest.cpp',
4060 'xml/parser/SharedBufferReaderTest.cpp', 4060 'xml/parser/SharedBufferReaderTest.cpp',
4061 ], 4061 ],
4062 } 4062 }
4063 } 4063 }
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/dom/ChildFrameDisconnector.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698