| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2008 Nuanti Ltd. | 3 * Copyright (C) 2008 Nuanti Ltd. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 #include "core/dom/AXObjectCache.h" | 30 #include "core/dom/AXObjectCache.h" |
| 31 #include "core/dom/ContainerNode.h" | 31 #include "core/dom/ContainerNode.h" |
| 32 #include "core/dom/Document.h" | 32 #include "core/dom/Document.h" |
| 33 #include "core/dom/Element.h" | 33 #include "core/dom/Element.h" |
| 34 #include "core/dom/ElementTraversal.h" | 34 #include "core/dom/ElementTraversal.h" |
| 35 #include "core/dom/Range.h" | 35 #include "core/dom/Range.h" |
| 36 #include "core/dom/shadow/ElementShadow.h" | 36 #include "core/dom/shadow/ElementShadow.h" |
| 37 #include "core/dom/shadow/ShadowRoot.h" | 37 #include "core/dom/shadow/ShadowRoot.h" |
| 38 #include "core/dom/shadow/SlotScopedTraversal.h" | 38 #include "core/dom/shadow/SlotScopedTraversal.h" |
| 39 #include "core/editing/EditingUtilities.h" // For firstPositionInOrBeforeNode | 39 #include "core/editing/EditingUtilities.h" // For firstPositionInOrBeforeNode |
| 40 #include "core/editing/Editor.h" | |
| 41 #include "core/editing/FrameSelection.h" | 40 #include "core/editing/FrameSelection.h" |
| 42 #include "core/editing/InputMethodController.h" | 41 #include "core/editing/InputMethodController.h" |
| 43 #include "core/events/Event.h" | 42 #include "core/events/Event.h" |
| 44 #include "core/frame/FrameClient.h" | 43 #include "core/frame/FrameClient.h" |
| 45 #include "core/frame/FrameView.h" | 44 #include "core/frame/FrameView.h" |
| 46 #include "core/frame/LocalDOMWindow.h" | 45 #include "core/frame/LocalDOMWindow.h" |
| 47 #include "core/frame/LocalFrame.h" | 46 #include "core/frame/LocalFrame.h" |
| 48 #include "core/frame/RemoteFrame.h" | 47 #include "core/frame/RemoteFrame.h" |
| 49 #include "core/frame/Settings.h" | 48 #include "core/frame/Settings.h" |
| 50 #include "core/html/HTMLAreaElement.h" | 49 #include "core/html/HTMLAreaElement.h" |
| (...skipping 1364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1415 it->focusedFrameChanged(); | 1414 it->focusedFrameChanged(); |
| 1416 } | 1415 } |
| 1417 | 1416 |
| 1418 DEFINE_TRACE(FocusController) { | 1417 DEFINE_TRACE(FocusController) { |
| 1419 visitor->trace(m_page); | 1418 visitor->trace(m_page); |
| 1420 visitor->trace(m_focusedFrame); | 1419 visitor->trace(m_focusedFrame); |
| 1421 visitor->trace(m_focusChangedObservers); | 1420 visitor->trace(m_focusChangedObservers); |
| 1422 } | 1421 } |
| 1423 | 1422 |
| 1424 } // namespace blink | 1423 } // namespace blink |
| OLD | NEW |