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

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

Issue 2774823002: Remove FrameHost class (Closed)
Patch Set: Rebase Created 3 years, 8 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
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 25 matching lines...) Expand all
36 #include "bindings/core/v8/EventListenerOptionsOrBoolean.h" 36 #include "bindings/core/v8/EventListenerOptionsOrBoolean.h"
37 #include "bindings/core/v8/ExceptionState.h" 37 #include "bindings/core/v8/ExceptionState.h"
38 #include "bindings/core/v8/ScriptEventListener.h" 38 #include "bindings/core/v8/ScriptEventListener.h"
39 #include "bindings/core/v8/SourceLocation.h" 39 #include "bindings/core/v8/SourceLocation.h"
40 #include "bindings/core/v8/V8DOMActivityLogger.h" 40 #include "bindings/core/v8/V8DOMActivityLogger.h"
41 #include "core/dom/ExceptionCode.h" 41 #include "core/dom/ExceptionCode.h"
42 #include "core/editing/Editor.h" 42 #include "core/editing/Editor.h"
43 #include "core/events/Event.h" 43 #include "core/events/Event.h"
44 #include "core/events/EventUtil.h" 44 #include "core/events/EventUtil.h"
45 #include "core/events/PointerEvent.h" 45 #include "core/events/PointerEvent.h"
46 #include "core/frame/FrameHost.h"
47 #include "core/frame/LocalDOMWindow.h" 46 #include "core/frame/LocalDOMWindow.h"
48 #include "core/frame/PerformanceMonitor.h" 47 #include "core/frame/PerformanceMonitor.h"
49 #include "core/frame/Settings.h" 48 #include "core/frame/Settings.h"
50 #include "core/frame/UseCounter.h" 49 #include "core/frame/UseCounter.h"
51 #include "core/probe/CoreProbes.h" 50 #include "core/probe/CoreProbes.h"
52 #include "platform/EventDispatchForbiddenScope.h" 51 #include "platform/EventDispatchForbiddenScope.h"
53 #include "platform/Histogram.h" 52 #include "platform/Histogram.h"
54 #include "wtf/PtrUtil.h" 53 #include "wtf/PtrUtil.h"
55 #include "wtf/StdLibExtras.h" 54 #include "wtf/StdLibExtras.h"
56 #include "wtf/Threading.h" 55 #include "wtf/Threading.h"
(...skipping 715 matching lines...) Expand 10 before | Expand all | Expand 10 after
772 // they have one less listener to invoke. 771 // they have one less listener to invoke.
773 if (d->firingEventIterators) { 772 if (d->firingEventIterators) {
774 for (const auto& iterator : *d->firingEventIterators) { 773 for (const auto& iterator : *d->firingEventIterators) {
775 iterator.iterator = 0; 774 iterator.iterator = 0;
776 iterator.end = 0; 775 iterator.end = 0;
777 } 776 }
778 } 777 }
779 } 778 }
780 779
781 } // namespace blink 780 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698