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

Side by Side Diff: Source/modules/EventTargetModulesHeaders.h

Issue 275283002: Split EventTargetFactory.in and auto-generate modules-related files. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebaseline Created 6 years, 7 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
(Empty)
1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met:
7 *
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above
11 * copyright notice, this list of conditions and the following disclaimer
12 * in the documentation and/or other materials provided with the
13 * distribution.
14 * * Neither the name of Google Inc. nor the names of its
15 * contributors may be used to endorse or promote products derived from
16 * this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */
abarth-chromium 2014/05/10 00:43:09 Please use a new-style copyright header: http://d
30
abarth-chromium 2014/05/10 00:43:09 Extra blank line here.
31
32 #ifndef EventTargetModulesHeaders_h
33 #define EventTargetModulesHeaders_h
34
35 #include "EventTargetHeaders.h"
36
37 #include "modules/battery/BatteryManager.h"
38 #include "modules/encryptedmedia/MediaKeySession.h"
39 #include "modules/filesystem/FileWriter.h"
40 #include "modules/indexeddb/IDBDatabase.h"
41 #include "modules/indexeddb/IDBOpenDBRequest.h"
42 #include "modules/indexeddb/IDBRequest.h"
43 #include "modules/indexeddb/IDBTransaction.h"
44 #include "modules/mediasource/MediaSource.h"
45 #include "modules/mediasource/SourceBuffer.h"
46 #include "modules/mediasource/SourceBufferList.h"
47 #include "modules/mediastream/MediaStream.h"
48 #include "modules/mediastream/MediaStreamTrack.h"
49 #include "modules/mediastream/RTCDTMFSender.h"
50 #include "modules/mediastream/RTCDataChannel.h"
51 #include "modules/mediastream/RTCPeerConnection.h"
52 #include "modules/notifications/Notification.h"
53 #include "modules/serviceworkers/ServiceWorker.h"
54 #include "modules/serviceworkers/ServiceWorkerGlobalScope.h"
55 #include "modules/speech/SpeechRecognition.h"
56 #include "modules/speech/SpeechSynthesisUtterance.h"
57 #if ENABLE(WEB_AUDIO)
58 #include "modules/webaudio/AudioContext.h"
59 #include "modules/webaudio/AudioNode.h"
60 #endif
61 #include "modules/webmidi/MIDIAccess.h"
62 #include "modules/webmidi/MIDIInput.h"
63 #include "modules/webmidi/MIDIPort.h"
64 #include "modules/websockets/WebSocket.h"
65
66 #if ENABLE(WEB_AUDIO)
abarth-chromium 2014/05/10 00:43:09 Not for this CL, but can we remove this ifdef?
67 #include "V8AudioContext.h"
68 #include "V8AudioNode.h"
69 #endif
70 #include "V8BatteryManager.h"
71 #include "V8FileWriter.h"
72 #include "V8IDBDatabase.h"
73 #include "V8IDBOpenDBRequest.h"
74 #include "V8IDBRequest.h"
75 #include "V8IDBTransaction.h"
76 #include "V8MIDIAccess.h"
77 #include "V8MIDIInput.h"
78 #include "V8MIDIPort.h"
79 #include "V8MediaKeySession.h"
80 #include "V8MediaSource.h"
81 #include "V8MediaStream.h"
82 #include "V8MediaStreamTrack.h"
83 #include "V8Notification.h"
84 #include "V8RTCDTMFSender.h"
85 #include "V8RTCDataChannel.h"
86 #include "V8RTCPeerConnection.h"
87 #include "V8ServiceWorker.h"
88 #include "V8ServiceWorkerGlobalScope.h"
89 #include "V8SourceBuffer.h"
90 #include "V8SourceBufferList.h"
91 #include "V8SpeechRecognition.h"
92 #include "V8SpeechSynthesisUtterance.h"
93 #include "V8WebSocket.h"
94
95 #endif // EventTargetModulesHeaders_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698