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

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

Issue 1206763002: Really remove config.h (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 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
« no previous file with comments | « sky/engine/core/events/EventPath.cpp ('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 11 matching lines...) Expand all
22 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 22 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
23 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 23 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
24 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 24 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
25 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY 25 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
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"
33 #include "sky/engine/core/events/EventTarget.h" 32 #include "sky/engine/core/events/EventTarget.h"
34 33
35 #include "gen/sky/platform/RuntimeEnabledFeatures.h" 34 #include "gen/sky/platform/RuntimeEnabledFeatures.h"
36 #include "sky/engine/bindings/exception_state.h" 35 #include "sky/engine/bindings/exception_state.h"
37 #include "sky/engine/core/dom/Document.h" 36 #include "sky/engine/core/dom/Document.h"
38 #include "sky/engine/core/dom/ExceptionCode.h" 37 #include "sky/engine/core/dom/ExceptionCode.h"
39 #include "sky/engine/core/dom/ExecutionContext.h" 38 #include "sky/engine/core/dom/ExecutionContext.h"
40 #include "sky/engine/core/editing/Editor.h" 39 #include "sky/engine/core/editing/Editor.h"
41 #include "sky/engine/core/events/Event.h" 40 #include "sky/engine/core/events/Event.h"
42 #include "sky/engine/core/frame/LocalDOMWindow.h" 41 #include "sky/engine/core/frame/LocalDOMWindow.h"
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
249 // they have one less listener to invoke. 248 // they have one less listener to invoke.
250 if (d->firingEventIterators) { 249 if (d->firingEventIterators) {
251 for (size_t i = 0; i < d->firingEventIterators->size(); ++i) { 250 for (size_t i = 0; i < d->firingEventIterators->size(); ++i) {
252 d->firingEventIterators->at(i).iterator = 0; 251 d->firingEventIterators->at(i).iterator = 0;
253 d->firingEventIterators->at(i).end = 0; 252 d->firingEventIterators->at(i).end = 0;
254 } 253 }
255 } 254 }
256 } 255 }
257 256
258 } // namespace blink 257 } // namespace blink
OLDNEW
« no previous file with comments | « sky/engine/core/events/EventPath.cpp ('k') | sky/engine/core/events/FocusEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698