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

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: Clarify the tear-down path for observers and observations. Created 5 years, 1 month 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 657881177bc726096475c81b31d2aefd0b9d5a83..2e7b23bf3e0d297969fdd4a898d9bfbd943ff047 100644
--- a/third_party/WebKit/Source/core/core.gypi
+++ b/third_party/WebKit/Source/core/core.gypi
@@ -75,6 +75,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',
@@ -2384,6 +2386,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/IntersectionObservationRegistry.cpp',
+ 'dom/IntersectionObservationRegistry.h',
'dom/Iterator.h',
'dom/LayoutTreeBuilder.cpp',
'dom/LayoutTreeBuilder.h',
@@ -3528,6 +3538,7 @@
'dom/DOMPointInit.idl',
'dom/ElementRegistrationOptions.idl',
'dom/IdleRequestOptions.idl',
+ 'dom/IntersectionObserverInit.idl',
'dom/MutationObserverInit.idl',
'dom/shadow/ShadowRootInit.idl',
'dom/TouchInit.idl',
@@ -3586,6 +3597,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