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

Side by Side Diff: third_party/WebKit/Source/modules/modules_idl_files.gni

Issue 2102133002: Add constructors for WebAudio nodes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add use counters for all constructors Created 4 years, 3 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 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//third_party/WebKit/Source/bindings/bindings.gni") 5 import("//third_party/WebKit/Source/bindings/bindings.gni")
6 6
7 # The paths in this file are absolute since this file is imported and the 7 # The paths in this file are absolute since this file is imported and the
8 # file lists must be valid from multple "current directories". 8 # file lists must be valid from multple "current directories".
9 9
10 bindings_modules_output_dir = "$bindings_output_dir/modules" 10 bindings_modules_output_dir = "$bindings_output_dir/modules"
(...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after
453 "serviceworkers/ForeignFetchOptions.idl", 453 "serviceworkers/ForeignFetchOptions.idl",
454 "serviceworkers/ForeignFetchResponse.idl", 454 "serviceworkers/ForeignFetchResponse.idl",
455 "serviceworkers/RegistrationOptions.idl", 455 "serviceworkers/RegistrationOptions.idl",
456 "serviceworkers/ServiceWorkerMessageEventInit.idl", 456 "serviceworkers/ServiceWorkerMessageEventInit.idl",
457 "speech/SpeechRecognitionErrorInit.idl", 457 "speech/SpeechRecognitionErrorInit.idl",
458 "speech/SpeechRecognitionEventInit.idl", 458 "speech/SpeechRecognitionEventInit.idl",
459 "storage/StorageEventInit.idl", 459 "storage/StorageEventInit.idl",
460 "vr/VRDisplayEventInit.idl", 460 "vr/VRDisplayEventInit.idl",
461 "vr/VRFieldOfViewInit.idl", 461 "vr/VRFieldOfViewInit.idl",
462 "vr/VRLayer.idl", 462 "vr/VRLayer.idl",
463 "webaudio/AnalyserOptions.idl",
464 "webaudio/AudioBufferOptions.idl",
465 "webaudio/AudioBufferSourceOptions.idl",
466 "webaudio/AudioNodeOptions.idl",
467 "webaudio/BiquadFilterOptions.idl",
468 "webaudio/ChannelMergerOptions.idl",
469 "webaudio/ChannelSplitterOptions.idl",
470 "webaudio/ConvolverOptions.idl",
471 "webaudio/DelayOptions.idl",
472 "webaudio/DynamicsCompressorOptions.idl",
473 "webaudio/GainOptions.idl",
474 "webaudio/IIRFilterOptions.idl",
475 "webaudio/MediaElementAudioSourceOptions.idl",
476 "webaudio/PannerOptions.idl",
463 "webaudio/PeriodicWaveConstraints.idl", 477 "webaudio/PeriodicWaveConstraints.idl",
478 "webaudio/PeriodicWaveOptions.idl",
479 "webaudio/OscillatorOptions.idl",
480 "webaudio/StereoPannerOptions.idl",
481 "webaudio/WaveShaperOptions.idl",
464 "webgl/WebGLContextAttributes.idl", 482 "webgl/WebGLContextAttributes.idl",
465 "webgl/WebGLContextEventInit.idl", 483 "webgl/WebGLContextEventInit.idl",
466 "webmidi/MIDIConnectionEventInit.idl", 484 "webmidi/MIDIConnectionEventInit.idl",
467 "webmidi/MIDIMessageEventInit.idl", 485 "webmidi/MIDIMessageEventInit.idl",
468 "webmidi/MIDIOptions.idl", 486 "webmidi/MIDIOptions.idl",
469 "webshare/ShareData.idl", 487 "webshare/ShareData.idl",
470 "websockets/CloseEventInit.idl", 488 "websockets/CloseEventInit.idl",
471 "webusb/USBConnectionEventInit.idl", 489 "webusb/USBConnectionEventInit.idl",
472 "webusb/USBControlTransferParameters.idl", 490 "webusb/USBControlTransferParameters.idl",
473 "webusb/USBDeviceFilter.idl", 491 "webusb/USBDeviceFilter.idl",
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
583 modules_dependency_idl_files + modules_testing_dependency_idl_files 601 modules_dependency_idl_files + modules_testing_dependency_idl_files
584 602
585 modules_generated_dependency_idl_files = 603 modules_generated_dependency_idl_files =
586 modules_core_global_constructors_generated_idl_files + 604 modules_core_global_constructors_generated_idl_files +
587 modules_global_constructors_generated_idl_files 605 modules_global_constructors_generated_idl_files
588 606
589 # 'modules_dependency_idl_files' is already used in Source/modules, so avoid 607 # 'modules_dependency_idl_files' is already used in Source/modules, so avoid
590 # collision 608 # collision
591 modules_all_dependency_idl_files = 609 modules_all_dependency_idl_files =
592 modules_static_dependency_idl_files + modules_generated_dependency_idl_files 610 modules_static_dependency_idl_files + modules_generated_dependency_idl_files
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698