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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: Source/modules/EventTargetModulesHeaders.h
diff --git a/Source/modules/EventTargetModulesHeaders.h b/Source/modules/EventTargetModulesHeaders.h
new file mode 100644
index 0000000000000000000000000000000000000000..962132f69ac68a9a9a823922032e23baab67b4a9
--- /dev/null
+++ b/Source/modules/EventTargetModulesHeaders.h
@@ -0,0 +1,95 @@
+/*
+ * Copyright (C) 2013 Google Inc. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are
+ * met:
+ *
+ * * Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * * Redistributions in binary form must reproduce the above
+ * copyright notice, this list of conditions and the following disclaimer
+ * in the documentation and/or other materials provided with the
+ * distribution.
+ * * Neither the name of Google Inc. nor the names of its
+ * contributors may be used to endorse or promote products derived from
+ * this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
abarth-chromium 2014/05/10 00:43:09 Please use a new-style copyright header: http://d
+
abarth-chromium 2014/05/10 00:43:09 Extra blank line here.
+
+#ifndef EventTargetModulesHeaders_h
+#define EventTargetModulesHeaders_h
+
+#include "EventTargetHeaders.h"
+
+#include "modules/battery/BatteryManager.h"
+#include "modules/encryptedmedia/MediaKeySession.h"
+#include "modules/filesystem/FileWriter.h"
+#include "modules/indexeddb/IDBDatabase.h"
+#include "modules/indexeddb/IDBOpenDBRequest.h"
+#include "modules/indexeddb/IDBRequest.h"
+#include "modules/indexeddb/IDBTransaction.h"
+#include "modules/mediasource/MediaSource.h"
+#include "modules/mediasource/SourceBuffer.h"
+#include "modules/mediasource/SourceBufferList.h"
+#include "modules/mediastream/MediaStream.h"
+#include "modules/mediastream/MediaStreamTrack.h"
+#include "modules/mediastream/RTCDTMFSender.h"
+#include "modules/mediastream/RTCDataChannel.h"
+#include "modules/mediastream/RTCPeerConnection.h"
+#include "modules/notifications/Notification.h"
+#include "modules/serviceworkers/ServiceWorker.h"
+#include "modules/serviceworkers/ServiceWorkerGlobalScope.h"
+#include "modules/speech/SpeechRecognition.h"
+#include "modules/speech/SpeechSynthesisUtterance.h"
+#if ENABLE(WEB_AUDIO)
+#include "modules/webaudio/AudioContext.h"
+#include "modules/webaudio/AudioNode.h"
+#endif
+#include "modules/webmidi/MIDIAccess.h"
+#include "modules/webmidi/MIDIInput.h"
+#include "modules/webmidi/MIDIPort.h"
+#include "modules/websockets/WebSocket.h"
+
+#if ENABLE(WEB_AUDIO)
abarth-chromium 2014/05/10 00:43:09 Not for this CL, but can we remove this ifdef?
+#include "V8AudioContext.h"
+#include "V8AudioNode.h"
+#endif
+#include "V8BatteryManager.h"
+#include "V8FileWriter.h"
+#include "V8IDBDatabase.h"
+#include "V8IDBOpenDBRequest.h"
+#include "V8IDBRequest.h"
+#include "V8IDBTransaction.h"
+#include "V8MIDIAccess.h"
+#include "V8MIDIInput.h"
+#include "V8MIDIPort.h"
+#include "V8MediaKeySession.h"
+#include "V8MediaSource.h"
+#include "V8MediaStream.h"
+#include "V8MediaStreamTrack.h"
+#include "V8Notification.h"
+#include "V8RTCDTMFSender.h"
+#include "V8RTCDataChannel.h"
+#include "V8RTCPeerConnection.h"
+#include "V8ServiceWorker.h"
+#include "V8ServiceWorkerGlobalScope.h"
+#include "V8SourceBuffer.h"
+#include "V8SourceBufferList.h"
+#include "V8SpeechRecognition.h"
+#include "V8SpeechSynthesisUtterance.h"
+#include "V8WebSocket.h"
+
+#endif // EventTargetModulesHeaders_h

Powered by Google App Engine
This is Rietveld 408576698