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

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

Issue 10834324: Revert 124780 - Create a MediaSource object. (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1229/
Patch Set: Created 8 years, 4 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 * 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 IDBVersionChangeRequest; 55 class IDBVersionChangeRequest;
56 class JavaScriptAudioNode; 56 class JavaScriptAudioNode;
57 class LocalMediaStream; 57 class LocalMediaStream;
58 class MediaController; 58 class MediaController;
59 class MediaSource;
60 class MediaStream; 59 class MediaStream;
61 class MessagePort; 60 class MessagePort;
62 class Node; 61 class Node;
63 class Notification; 62 class Notification;
64 class SVGElementInstance; 63 class SVGElementInstance;
65 class ScriptExecutionContext; 64 class ScriptExecutionContext;
66 class SharedWorker; 65 class SharedWorker;
67 class SharedWorkerContext; 66 class SharedWorkerContext;
68 class SourceBufferList; 67 class SourceBufferList;
69 class TextTrack; 68 class TextTrack;
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 { 213 {
215 EventTargetData* d = eventTargetData(); 214 EventTargetData* d = eventTargetData();
216 if (!d) 215 if (!d)
217 return false; 216 return false;
218 return d->eventListenerMap.contains(eventType); 217 return d->eventListenerMap.contains(eventType);
219 } 218 }
220 219
221 } // namespace WebCore 220 } // namespace WebCore
222 221
223 #endif // EventTarget_h 222 #endif // EventTarget_h
OLDNEW
« no previous file with comments | « Source/WebCore/WebCore.xcodeproj/project.pbxproj ('k') | Source/WebCore/dom/EventTargetFactory.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698