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

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

Issue 915293003: Rename sky/engine/bindings2 to sky/engine/bindings (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: more better Created 5 years, 10 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
« no previous file with comments | « sky/engine/core/editing/htmlediting.cpp ('k') | sky/engine/core/frame/DOMTimer.h » ('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 15 matching lines...) Expand all
26 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 * 29 *
30 */ 30 */
31 31
32 #include "sky/engine/config.h" 32 #include "sky/engine/config.h"
33 #include "sky/engine/core/events/EventTarget.h" 33 #include "sky/engine/core/events/EventTarget.h"
34 34
35 #include "gen/sky/platform/RuntimeEnabledFeatures.h" 35 #include "gen/sky/platform/RuntimeEnabledFeatures.h"
36 #include "sky/engine/bindings2/exception_state.h" 36 #include "sky/engine/bindings/exception_state.h"
37 #include "sky/engine/core/dom/Document.h" 37 #include "sky/engine/core/dom/Document.h"
38 #include "sky/engine/core/dom/ExceptionCode.h" 38 #include "sky/engine/core/dom/ExceptionCode.h"
39 #include "sky/engine/core/dom/ExecutionContext.h" 39 #include "sky/engine/core/dom/ExecutionContext.h"
40 #include "sky/engine/core/editing/Editor.h" 40 #include "sky/engine/core/editing/Editor.h"
41 #include "sky/engine/core/events/Event.h" 41 #include "sky/engine/core/events/Event.h"
42 #include "sky/engine/core/frame/LocalDOMWindow.h" 42 #include "sky/engine/core/frame/LocalDOMWindow.h"
43 #include "sky/engine/platform/EventDispatchForbiddenScope.h" 43 #include "sky/engine/platform/EventDispatchForbiddenScope.h"
44 #include "sky/engine/tonic/dart_gc_visitor.h" 44 #include "sky/engine/tonic/dart_gc_visitor.h"
45 #include "sky/engine/wtf/StdLibExtras.h" 45 #include "sky/engine/wtf/StdLibExtras.h"
46 #include "sky/engine/wtf/Vector.h" 46 #include "sky/engine/wtf/Vector.h"
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
249 // they have one less listener to invoke. 249 // they have one less listener to invoke.
250 if (d->firingEventIterators) { 250 if (d->firingEventIterators) {
251 for (size_t i = 0; i < d->firingEventIterators->size(); ++i) { 251 for (size_t i = 0; i < d->firingEventIterators->size(); ++i) {
252 d->firingEventIterators->at(i).iterator = 0; 252 d->firingEventIterators->at(i).iterator = 0;
253 d->firingEventIterators->at(i).end = 0; 253 d->firingEventIterators->at(i).end = 0;
254 } 254 }
255 } 255 }
256 } 256 }
257 257
258 } // namespace blink 258 } // namespace blink
OLDNEW
« no previous file with comments | « sky/engine/core/editing/htmlediting.cpp ('k') | sky/engine/core/frame/DOMTimer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698