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

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

Issue 540283003: bindings: Retires ScriptWrappable::init, etc. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Addressed a review comment. Created 6 years, 3 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/events/EventTarget.h ('k') | Source/core/events/FocusEvent.cpp » ('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 Apple Inc. All rights reserved. 5 * Copyright (C) 2004, 2005, 2006, 2007 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 EventTargetData::EventTargetData() 52 EventTargetData::EventTargetData()
53 { 53 {
54 } 54 }
55 55
56 EventTargetData::~EventTargetData() 56 EventTargetData::~EventTargetData()
57 { 57 {
58 } 58 }
59 59
60 EventTarget::EventTarget() 60 EventTarget::EventTarget()
61 { 61 {
62 ScriptWrappable::init(this);
63 } 62 }
64 63
65 EventTarget::~EventTarget() 64 EventTarget::~EventTarget()
66 { 65 {
67 } 66 }
68 67
69 Node* EventTarget::toNode() 68 Node* EventTarget::toNode()
70 { 69 {
71 return 0; 70 return 0;
72 } 71 }
(...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after
382 // they have one less listener to invoke. 381 // they have one less listener to invoke.
383 if (d->firingEventIterators) { 382 if (d->firingEventIterators) {
384 for (size_t i = 0; i < d->firingEventIterators->size(); ++i) { 383 for (size_t i = 0; i < d->firingEventIterators->size(); ++i) {
385 d->firingEventIterators->at(i).iterator = 0; 384 d->firingEventIterators->at(i).iterator = 0;
386 d->firingEventIterators->at(i).end = 0; 385 d->firingEventIterators->at(i).end = 0;
387 } 386 }
388 } 387 }
389 } 388 }
390 389
391 } // namespace blink 390 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/events/EventTarget.h ('k') | Source/core/events/FocusEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698