| 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 30 matching lines...) Expand all Loading... |
| 41 #include "core/editing/htmlediting.h" // For firstPositionInOrBeforeNode | 41 #include "core/editing/htmlediting.h" // For firstPositionInOrBeforeNode |
| 42 #include "core/events/Event.h" | 42 #include "core/events/Event.h" |
| 43 #include "core/frame/FrameView.h" | 43 #include "core/frame/FrameView.h" |
| 44 #include "core/frame/LocalDOMWindow.h" | 44 #include "core/frame/LocalDOMWindow.h" |
| 45 #include "core/frame/LocalFrame.h" | 45 #include "core/frame/LocalFrame.h" |
| 46 #include "core/html/HTMLAreaElement.h" | 46 #include "core/html/HTMLAreaElement.h" |
| 47 #include "core/html/HTMLImageElement.h" | 47 #include "core/html/HTMLImageElement.h" |
| 48 #include "core/html/HTMLPlugInElement.h" | 48 #include "core/html/HTMLPlugInElement.h" |
| 49 #include "core/html/HTMLShadowElement.h" | 49 #include "core/html/HTMLShadowElement.h" |
| 50 #include "core/html/HTMLTextFormControlElement.h" | 50 #include "core/html/HTMLTextFormControlElement.h" |
| 51 #include "core/input/EventHandler.h" |
| 51 #include "core/page/ChromeClient.h" | 52 #include "core/page/ChromeClient.h" |
| 52 #include "core/page/EventHandler.h" | |
| 53 #include "core/page/FrameTree.h" | 53 #include "core/page/FrameTree.h" |
| 54 #include "core/page/Page.h" | 54 #include "core/page/Page.h" |
| 55 #include "core/frame/Settings.h" | 55 #include "core/frame/Settings.h" |
| 56 #include "core/layout/HitTestResult.h" | 56 #include "core/layout/HitTestResult.h" |
| 57 #include "core/page/SpatialNavigation.h" | 57 #include "core/page/SpatialNavigation.h" |
| 58 #include <limits> | 58 #include <limits> |
| 59 | 59 |
| 60 namespace blink { | 60 namespace blink { |
| 61 | 61 |
| 62 using namespace HTMLNames; | 62 using namespace HTMLNames; |
| (...skipping 947 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1010 return consumed; | 1010 return consumed; |
| 1011 } | 1011 } |
| 1012 | 1012 |
| 1013 DEFINE_TRACE(FocusController) | 1013 DEFINE_TRACE(FocusController) |
| 1014 { | 1014 { |
| 1015 visitor->trace(m_page); | 1015 visitor->trace(m_page); |
| 1016 visitor->trace(m_focusedFrame); | 1016 visitor->trace(m_focusedFrame); |
| 1017 } | 1017 } |
| 1018 | 1018 |
| 1019 } // namespace blink | 1019 } // namespace blink |
| OLD | NEW |