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

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

Issue 16625011: Add minimal implementation of unprefixed MediaSource API that has feature parity with prefixed API (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix global-constructors-listing-expected.txt Created 7 years, 6 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
« no previous file with comments | « Source/core/dom/EventNames.h ('k') | Source/core/dom/EventTargetFactory.in » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 class NamedFlow; 61 class NamedFlow;
62 class Node; 62 class Node;
63 class Notification; 63 class Notification;
64 class SVGElementInstance; 64 class SVGElementInstance;
65 class ScriptExecutionContext; 65 class ScriptExecutionContext;
66 class ScriptProcessorNode; 66 class ScriptProcessorNode;
67 class SharedWorker; 67 class SharedWorker;
68 class SharedWorkerContext; 68 class SharedWorkerContext;
69 class TextTrack; 69 class TextTrack;
70 class TextTrackCue; 70 class TextTrackCue;
71 class WebKitMediaSource;
72 class WebKitSourceBufferList;
73 class WebSocket; 71 class WebSocket;
74 class Worker; 72 class Worker;
75 class XMLHttpRequest; 73 class XMLHttpRequest;
76 class XMLHttpRequestUpload; 74 class XMLHttpRequestUpload;
77 75
78 typedef int ExceptionCode; 76 typedef int ExceptionCode;
79 77
80 struct FiringEventIterator { 78 struct FiringEventIterator {
81 FiringEventIterator(const AtomicString& eventType, size_t& iterator, siz e_t& end) 79 FiringEventIterator(const AtomicString& eventType, size_t& iterator, siz e_t& end)
82 : eventType(eventType) 80 : eventType(eventType)
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 { 190 {
193 EventTargetData* d = eventTargetData(); 191 EventTargetData* d = eventTargetData();
194 if (!d) 192 if (!d)
195 return false; 193 return false;
196 return d->eventListenerMap.contains(eventType); 194 return d->eventListenerMap.contains(eventType);
197 } 195 }
198 196
199 } // namespace WebCore 197 } // namespace WebCore
200 198
201 #endif // EventTarget_h 199 #endif // EventTarget_h
OLDNEW
« no previous file with comments | « Source/core/dom/EventNames.h ('k') | Source/core/dom/EventTargetFactory.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698