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

Unified Diff: Source/modules/modules.gypi

Issue 942913002: [AppBanner] Blink implementation of an event when an install banner is shown. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: review comments Created 5 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 side-by-side diff with in-line comments
Download patch
Index: Source/modules/modules.gypi
diff --git a/Source/modules/modules.gypi b/Source/modules/modules.gypi
index 57116d5f1f5820c198449365a92443239a0059d5..1c6fa79dee0132a42a796f13b7463a9fd414e480 100644
--- a/Source/modules/modules.gypi
+++ b/Source/modules/modules.gypi
@@ -14,6 +14,7 @@
# Files for which bindings (.cpp and .h files) will be generated
'modules_idl_files': [
'<@(extra_blink_module_idl_files)',
+ 'app_banner/BeforeInstallPromptEvent.idl',
'battery/BatteryManager.idl',
'bluetooth/Bluetooth.idl',
'bluetooth/BluetoothDevice.idl',
@@ -276,6 +277,7 @@
],
# interfaces that inherit from Event
'modules_event_idl_files': [
+ 'app_banner/BeforeInstallPromptEvent.idl',
'device_light/DeviceLightEvent.idl',
'device_orientation/DeviceMotionEvent.idl',
'device_orientation/DeviceOrientationEvent.idl',
@@ -306,6 +308,7 @@
'websockets/CloseEvent.idl',
],
'modules_dictionary_idl_files': [
+ 'app_banner/BeforeInstallPromptEventInit.idl',
'device_light/DeviceLightEventInit.idl',
'encoding/TextDecodeOptions.idl',
'encoding/TextDecoderOptions.idl',
@@ -352,6 +355,8 @@
'<(blink_modules_output_dir)/IndexedDBNames.h',
],
'generated_modules_dictionary_files': [
+ '<(blink_modules_output_dir)/app_banner/BeforeInstallPromptEventInit.cpp',
+ '<(blink_modules_output_dir)/app_banner/BeforeInstallPromptEventInit.h',
'<(blink_modules_output_dir)/device_light/DeviceLightEventInit.cpp',
'<(blink_modules_output_dir)/device_light/DeviceLightEventInit.h',
'<(blink_modules_output_dir)/encoding/TextDecodeOptions.cpp',
@@ -483,6 +488,10 @@
'accessibility/AXTableRow.h',
'accessibility/InspectorAccessibilityAgent.cpp',
'accessibility/InspectorAccessibilityAgent.h',
+ 'app_banner/AppBannerController.cpp',
+ 'app_banner/AppBannerController.h',
+ 'app_banner/BeforeInstallPromptEvent.cpp',
+ 'app_banner/BeforeInstallPromptEvent.h',
'battery/BatteryDispatcher.cpp',
'battery/BatteryDispatcher.h',
'battery/BatteryManager.cpp',

Powered by Google App Engine
This is Rietveld 408576698