OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1998, 1999 Torben Weis <weis@kde.org> | 2 * Copyright (C) 1998, 1999 Torben Weis <weis@kde.org> |
3 * 1999 Lars Knoll <knoll@kde.org> | 3 * 1999 Lars Knoll <knoll@kde.org> |
4 * 1999 Antti Koivisto <koivisto@kde.org> | 4 * 1999 Antti Koivisto <koivisto@kde.org> |
5 * 2000 Simon Hausmann <hausmann@kde.org> | 5 * 2000 Simon Hausmann <hausmann@kde.org> |
6 * 2000 Stefan Schimanski <1Stein@gmx.de> | 6 * 2000 Stefan Schimanski <1Stein@gmx.de> |
7 * 2001 George Staikos <staikos@kde.org> | 7 * 2001 George Staikos <staikos@kde.org> |
8 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r
ights reserved. | 8 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r
ights reserved. |
9 * Copyright (C) 2005 Alexey Proskuryakov <ap@nypop.com> | 9 * Copyright (C) 2005 Alexey Proskuryakov <ap@nypop.com> |
10 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) | 10 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) |
(...skipping 15 matching lines...) Expand all Loading... |
26 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 26 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
27 * Boston, MA 02110-1301, USA. | 27 * Boston, MA 02110-1301, USA. |
28 */ | 28 */ |
29 | 29 |
30 #include "config.h" | 30 #include "config.h" |
31 #include "core/frame/LocalFrame.h" | 31 #include "core/frame/LocalFrame.h" |
32 | 32 |
33 #include "RuntimeEnabledFeatures.h" | 33 #include "RuntimeEnabledFeatures.h" |
34 #include "bindings/v8/ScriptController.h" | 34 #include "bindings/v8/ScriptController.h" |
35 #include "core/dom/DocumentType.h" | 35 #include "core/dom/DocumentType.h" |
36 #include "core/dom/WheelController.h" | 36 #include "core/dom/EventHandlerRegistry.h" |
37 #include "core/editing/Editor.h" | 37 #include "core/editing/Editor.h" |
38 #include "core/editing/FrameSelection.h" | 38 #include "core/editing/FrameSelection.h" |
39 #include "core/editing/InputMethodController.h" | 39 #include "core/editing/InputMethodController.h" |
40 #include "core/editing/SpellChecker.h" | 40 #include "core/editing/SpellChecker.h" |
41 #include "core/editing/htmlediting.h" | 41 #include "core/editing/htmlediting.h" |
42 #include "core/editing/markup.h" | 42 #include "core/editing/markup.h" |
43 #include "core/events/Event.h" | 43 #include "core/events/Event.h" |
44 #include "core/fetch/ResourceFetcher.h" | 44 #include "core/fetch/ResourceFetcher.h" |
45 #include "core/frame/DOMWindow.h" | 45 #include "core/frame/DOMWindow.h" |
46 #include "core/frame/FrameHost.h" | 46 #include "core/frame/FrameHost.h" |
(...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
494 document()->mediaQueryAffectingValueChanged(); | 494 document()->mediaQueryAffectingValueChanged(); |
495 for (RefPtr<LocalFrame> child = tree().firstChild(); child; child = child->t
ree().nextSibling()) | 495 for (RefPtr<LocalFrame> child = tree().firstChild(); child; child = child->t
ree().nextSibling()) |
496 child->deviceOrPageScaleFactorChanged(); | 496 child->deviceOrPageScaleFactorChanged(); |
497 } | 497 } |
498 | 498 |
499 void LocalFrame::notifyChromeClientWheelEventHandlerCountChanged() const | 499 void LocalFrame::notifyChromeClientWheelEventHandlerCountChanged() const |
500 { | 500 { |
501 // Ensure that this method is being called on the main frame of the page. | 501 // Ensure that this method is being called on the main frame of the page. |
502 ASSERT(isMainFrame()); | 502 ASSERT(isMainFrame()); |
503 | 503 |
504 unsigned count = 0; | 504 unsigned count = EventHandlerRegistry::from(*document())->eventHandlerCount(
EventHandlerRegistry::WheelEvent); |
505 for (const LocalFrame* frame = this; frame; frame = frame->tree().traverseNe
xt()) { | |
506 if (frame->document()) | |
507 count += WheelController::from(*frame->document())->wheelEventHandle
rCount(); | |
508 } | |
509 | |
510 m_host->chrome().client().numWheelEventHandlersChanged(count); | 505 m_host->chrome().client().numWheelEventHandlersChanged(count); |
511 } | 506 } |
512 | 507 |
513 bool LocalFrame::isURLAllowed(const KURL& url) const | 508 bool LocalFrame::isURLAllowed(const KURL& url) const |
514 { | 509 { |
515 // We allow one level of self-reference because some sites depend on that, | 510 // We allow one level of self-reference because some sites depend on that, |
516 // but we don't allow more than one. | 511 // but we don't allow more than one. |
517 if (page()->subframeCount() >= Page::maxNumberOfFrames) | 512 if (page()->subframeCount() >= Page::maxNumberOfFrames) |
518 return false; | 513 return false; |
519 bool foundSelfReference = false; | 514 bool foundSelfReference = false; |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
632 { | 627 { |
633 if (!m_host) | 628 if (!m_host) |
634 return 0; | 629 return 0; |
635 | 630 |
636 double ratio = m_host->deviceScaleFactor(); | 631 double ratio = m_host->deviceScaleFactor(); |
637 ratio *= pageZoomFactor(); | 632 ratio *= pageZoomFactor(); |
638 return ratio; | 633 return ratio; |
639 } | 634 } |
640 | 635 |
641 } // namespace WebCore | 636 } // namespace WebCore |
OLD | NEW |