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

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

Issue 143323014: *** DO NOT LAND *** Attempt to understand Regions complexity Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 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/WebKitNamedFlowCollection.idl ('k') | Source/core/events/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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 class FileWriter; 50 class FileWriter;
51 class IDBDatabase; 51 class IDBDatabase;
52 class IDBRequest; 52 class IDBRequest;
53 class IDBTransaction; 53 class IDBTransaction;
54 class MIDIAccess; 54 class MIDIAccess;
55 class MIDIInput; 55 class MIDIInput;
56 class MIDIPort; 56 class MIDIPort;
57 class MediaController; 57 class MediaController;
58 class MediaStream; 58 class MediaStream;
59 class MessagePort; 59 class MessagePort;
60 class NamedFlow;
61 class Node; 60 class Node;
62 class Notification; 61 class Notification;
63 class SVGElementInstance; 62 class SVGElementInstance;
64 class ExecutionContext; 63 class ExecutionContext;
65 class ScriptProcessorNode; 64 class ScriptProcessorNode;
66 class SharedWorker; 65 class SharedWorker;
67 class SharedWorkerGlobalScope; 66 class SharedWorkerGlobalScope;
68 class TextTrack; 67 class TextTrack;
69 class TextTrackCue; 68 class TextTrackCue;
70 class WebSocket; 69 class WebSocket;
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
244 virtual void refEventTarget() OVERRIDE FINAL { ref(); } \ 243 virtual void refEventTarget() OVERRIDE FINAL { ref(); } \
245 virtual void derefEventTarget() OVERRIDE FINAL { deref(); } \ 244 virtual void derefEventTarget() OVERRIDE FINAL { deref(); } \
246 typedef int thisIsHereToForceASemiColonAfterThisEventTargetMacro 245 typedef int thisIsHereToForceASemiColonAfterThisEventTargetMacro
247 246
248 // Use this macro if your EventTarget subclass is also a subclass of WTF::RefCou nted. 247 // Use this macro if your EventTarget subclass is also a subclass of WTF::RefCou nted.
249 // A ref-counted class that uses a different method of refcounting should use DE FINE_EVENT_TARGET_REFCOUNTING directly. 248 // A ref-counted class that uses a different method of refcounting should use DE FINE_EVENT_TARGET_REFCOUNTING directly.
250 // Both of these macros are meant to be placed just before the "public:" section of the class declaration. 249 // Both of these macros are meant to be placed just before the "public:" section of the class declaration.
251 #define REFCOUNTED_EVENT_TARGET(className) DEFINE_EVENT_TARGET_REFCOUNTING(RefCo unted<className>) 250 #define REFCOUNTED_EVENT_TARGET(className) DEFINE_EVENT_TARGET_REFCOUNTING(RefCo unted<className>)
252 251
253 #endif // EventTarget_h 252 #endif // EventTarget_h
OLDNEW
« no previous file with comments | « Source/core/dom/WebKitNamedFlowCollection.idl ('k') | Source/core/events/EventTargetFactory.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698