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

Unified Diff: third_party/WebKit/Source/core/core.gypi

Issue 1449623002: IntersectionObserver: second cut. (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Add RuntimeEnabled flags to all idl's, fix test expectations. Created 4 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/core.gypi
diff --git a/third_party/WebKit/Source/core/core.gypi b/third_party/WebKit/Source/core/core.gypi
index aec4b53f5f07262d935706b57667a6e2f69d6852..bbb87aa097828cc09f6f0244e3ace4a3ac591492 100644
--- a/third_party/WebKit/Source/core/core.gypi
+++ b/third_party/WebKit/Source/core/core.gypi
@@ -79,6 +79,8 @@
'dom/Int16Array.idl',
'dom/Int32Array.idl',
'dom/Int8Array.idl',
+ 'dom/IntersectionObserver.idl',
+ 'dom/IntersectionObserverEntry.idl',
'dom/Iterator.idl',
'dom/MessageChannel.idl',
'dom/MessagePort.idl',
@@ -2391,6 +2393,8 @@
'dom/ElementDataCache.h',
'dom/ElementFullscreen.cpp',
'dom/ElementFullscreen.h',
+ 'dom/ElementIntersectionObserverData.cpp',
+ 'dom/ElementIntersectionObserverData.h',
'dom/ElementRareData.cpp',
'dom/ElementRareData.h',
'dom/ElementTraversal.h',
@@ -2420,6 +2424,14 @@
'dom/IgnoreDestructiveWriteCountIncrementer.h',
'dom/IncrementLoadEventDelayCount.cpp',
'dom/IncrementLoadEventDelayCount.h',
+ 'dom/IntersectionObservation.cpp',
+ 'dom/IntersectionObservation.h',
+ 'dom/IntersectionObserver.cpp',
+ 'dom/IntersectionObserver.h',
+ 'dom/IntersectionObserverEntry.cpp',
+ 'dom/IntersectionObserverEntry.h',
+ 'dom/IntersectionObserverController.cpp',
+ 'dom/IntersectionObserverController.h',
'dom/Iterator.h',
'dom/LayoutTreeBuilder.cpp',
'dom/LayoutTreeBuilder.h',
@@ -3577,6 +3589,7 @@
'dom/DOMPointInit.idl',
'dom/ElementRegistrationOptions.idl',
'dom/IdleRequestOptions.idl',
+ 'dom/IntersectionObserverInit.idl',
'dom/MutationObserverInit.idl',
'dom/shadow/ShadowRootInit.idl',
'dom/TouchInit.idl',
@@ -3635,6 +3648,8 @@
'<(blink_core_output_dir)/dom/ElementRegistrationOptions.h',
'<(blink_core_output_dir)/dom/IdleRequestOptions.cpp',
'<(blink_core_output_dir)/dom/IdleRequestOptions.h',
+ '<(blink_core_output_dir)/dom/IntersectionObserverInit.cpp',
+ '<(blink_core_output_dir)/dom/IntersectionObserverInit.h',
'<(blink_core_output_dir)/dom/MutationObserverInit.cpp',
'<(blink_core_output_dir)/dom/MutationObserverInit.h',
'<(blink_core_output_dir)/dom/shadow/ShadowRootInit.cpp',

Powered by Google App Engine
This is Rietveld 408576698