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

Side by Side Diff: sky/engine/core/events/EventTarget.cpp

Issue 706123005: Remove nop ScriptWrappable::init calls (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « sky/engine/core/events/EventTarget.h ('k') | sky/engine/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 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
333 // they have one less listener to invoke. 332 // they have one less listener to invoke.
334 if (d->firingEventIterators) { 333 if (d->firingEventIterators) {
335 for (size_t i = 0; i < d->firingEventIterators->size(); ++i) { 334 for (size_t i = 0; i < d->firingEventIterators->size(); ++i) {
336 d->firingEventIterators->at(i).iterator = 0; 335 d->firingEventIterators->at(i).iterator = 0;
337 d->firingEventIterators->at(i).end = 0; 336 d->firingEventIterators->at(i).end = 0;
338 } 337 }
339 } 338 }
340 } 339 }
341 340
342 } // namespace blink 341 } // namespace blink
OLDNEW
« no previous file with comments | « sky/engine/core/events/EventTarget.h ('k') | sky/engine/core/events/FocusEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698