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

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

Issue 212643010: Add Dispatcher class to the Battery Status API module. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Store status only in Dispatcher and fixes other comments. Created 6 years, 8 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
OLDNEW
1 { 1 {
2 'variables': { 2 'variables': {
3 # Experimental hooks for embedder to provide extra IDL and source files. 3 # Experimental hooks for embedder to provide extra IDL and source files.
4 # 4 #
5 # Note: this is not a supported API. If you rely on this, you will be broken 5 # Note: this is not a supported API. If you rely on this, you will be broken
6 # from time to time as the code generator changes in backward incompatible 6 # from time to time as the code generator changes in backward incompatible
7 # ways. 7 # ways.
8 'extra_blink_module_idl_files': [], 8 'extra_blink_module_idl_files': [],
9 'extra_blink_module_files': [], 9 'extra_blink_module_files': [],
10 # Files for which bindings (.cpp and .h files) will be generated 10 # Files for which bindings (.cpp and .h files) will be generated
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 'speech/SpeechRecognitionEvent.idl', 246 'speech/SpeechRecognitionEvent.idl',
247 'speech/SpeechSynthesisEvent.idl', 247 'speech/SpeechSynthesisEvent.idl',
248 'webaudio/AudioProcessingEvent.idl', 248 'webaudio/AudioProcessingEvent.idl',
249 'webaudio/OfflineAudioCompletionEvent.idl', 249 'webaudio/OfflineAudioCompletionEvent.idl',
250 'webmidi/MIDIConnectionEvent.idl', 250 'webmidi/MIDIConnectionEvent.idl',
251 'webmidi/MIDIMessageEvent.idl', 251 'webmidi/MIDIMessageEvent.idl',
252 'websockets/CloseEvent.idl', 252 'websockets/CloseEvent.idl',
253 ], 253 ],
254 'modules_files': [ 254 'modules_files': [
255 '<@(extra_blink_module_files)', 255 '<@(extra_blink_module_files)',
256 'battery/BatteryDispatcher.cpp',
257 'battery/BatteryDispatcher.h',
256 'battery/BatteryManager.cpp', 258 'battery/BatteryManager.cpp',
257 'battery/BatteryManager.h', 259 'battery/BatteryManager.h',
258 'battery/BatteryStatus.cpp', 260 'battery/BatteryStatus.cpp',
259 'battery/BatteryStatus.h', 261 'battery/BatteryStatus.h',
260 'battery/NavigatorBattery.cpp', 262 'battery/NavigatorBattery.cpp',
261 'battery/NavigatorBattery.h', 263 'battery/NavigatorBattery.h',
262 'crypto/AesKeyAlgorithm.cpp', 264 'crypto/AesKeyAlgorithm.cpp',
263 'crypto/AesKeyAlgorithm.h', 265 'crypto/AesKeyAlgorithm.h',
264 'crypto/Crypto.cpp', 266 'crypto/Crypto.cpp',
265 'crypto/Crypto.h', 267 'crypto/Crypto.h',
(...skipping 650 matching lines...) Expand 10 before | Expand all | Expand 10 after
916 'indexeddb/IDBKeyPathTest.cpp', 918 'indexeddb/IDBKeyPathTest.cpp',
917 'indexeddb/IDBRequestTest.cpp', 919 'indexeddb/IDBRequestTest.cpp',
918 'indexeddb/IDBTransactionTest.cpp', 920 'indexeddb/IDBTransactionTest.cpp',
919 'websockets/WebSocketDeflaterTest.cpp', 921 'websockets/WebSocketDeflaterTest.cpp',
920 'websockets/WebSocketExtensionDispatcherTest.cpp', 922 'websockets/WebSocketExtensionDispatcherTest.cpp',
921 'websockets/WebSocketExtensionParserTest.cpp', 923 'websockets/WebSocketExtensionParserTest.cpp',
922 'websockets/WebSocketPerMessageDeflateTest.cpp', 924 'websockets/WebSocketPerMessageDeflateTest.cpp',
923 ], 925 ],
924 }, 926 },
925 } 927 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698