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

Side by Side Diff: Source/core/dom/EventTarget.h

Issue 14044022: Web MIDI: implement MIDIAccess (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: https://github.com/WebAudio/web-midi-api/issues/2 Created 7 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2001 Dirk Mueller (mueller@kde.org) 4 * (C) 2001 Dirk Mueller (mueller@kde.org)
5 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.
6 * Copyright (C) 2006 Alexey Proskuryakov (ap@webkit.org) 6 * Copyright (C) 2006 Alexey Proskuryakov (ap@webkit.org)
7 * (C) 2007, 2008 Nikolas Zimmermann <zimmermann@kde.org> 7 * (C) 2007, 2008 Nikolas Zimmermann <zimmermann@kde.org>
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions 10 * modification, are permitted provided that the following conditions
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 class DOMApplicationCache; 45 class DOMApplicationCache;
46 class DOMWindow; 46 class DOMWindow;
47 class Event; 47 class Event;
48 class EventListener; 48 class EventListener;
49 class EventSource; 49 class EventSource;
50 class FileReader; 50 class FileReader;
51 class FileWriter; 51 class FileWriter;
52 class IDBDatabase; 52 class IDBDatabase;
53 class IDBRequest; 53 class IDBRequest;
54 class IDBTransaction; 54 class IDBTransaction;
55 class MIDIAccess;
55 class MIDIInput; 56 class MIDIInput;
56 class MIDIPort; 57 class MIDIPort;
57 class MediaController; 58 class MediaController;
58 class MediaStream; 59 class MediaStream;
59 class MessagePort; 60 class MessagePort;
60 class NamedFlow; 61 class NamedFlow;
61 class Node; 62 class Node;
62 class Notification; 63 class Notification;
63 class SVGElementInstance; 64 class SVGElementInstance;
64 class ScriptExecutionContext; 65 class ScriptExecutionContext;
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 { 192 {
192 EventTargetData* d = eventTargetData(); 193 EventTargetData* d = eventTargetData();
193 if (!d) 194 if (!d)
194 return false; 195 return false;
195 return d->eventListenerMap.contains(eventType); 196 return d->eventListenerMap.contains(eventType);
196 } 197 }
197 198
198 } // namespace WebCore 199 } // namespace WebCore
199 200
200 #endif // EventTarget_h 201 #endif // EventTarget_h
OLDNEW
« no previous file with comments | « no previous file | Source/core/dom/EventTargetFactory.in » ('j') | Source/modules/webmidi/MIDIAccess.idl » ('J')

Powered by Google App Engine
This is Rietveld 408576698