| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserv
ed. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserv
ed. |
| 3 * Copyright (C) 2006 Alexey Proskuryakov (ap@webkit.org) | 3 * Copyright (C) 2006 Alexey Proskuryakov (ap@webkit.org) |
| 4 * Copyright (C) 2012 Digia Plc. and/or its subsidiary(-ies) | 4 * Copyright (C) 2012 Digia Plc. and/or its subsidiary(-ies) |
| 5 * | 5 * |
| 6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
| 7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
| 8 * are met: | 8 * are met: |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 #include "sky/engine/core/events/TextEvent.h" | 45 #include "sky/engine/core/events/TextEvent.h" |
| 46 #include "sky/engine/core/fetch/ImageResource.h" | 46 #include "sky/engine/core/fetch/ImageResource.h" |
| 47 #include "sky/engine/core/frame/FrameView.h" | 47 #include "sky/engine/core/frame/FrameView.h" |
| 48 #include "sky/engine/core/frame/LocalFrame.h" | 48 #include "sky/engine/core/frame/LocalFrame.h" |
| 49 #include "sky/engine/core/frame/Settings.h" | 49 #include "sky/engine/core/frame/Settings.h" |
| 50 #include "sky/engine/core/loader/FrameLoaderClient.h" | 50 #include "sky/engine/core/loader/FrameLoaderClient.h" |
| 51 #include "sky/engine/core/page/AutoscrollController.h" | 51 #include "sky/engine/core/page/AutoscrollController.h" |
| 52 #include "sky/engine/core/page/Chrome.h" | 52 #include "sky/engine/core/page/Chrome.h" |
| 53 #include "sky/engine/core/page/ChromeClient.h" | 53 #include "sky/engine/core/page/ChromeClient.h" |
| 54 #include "sky/engine/core/page/EditorClient.h" | 54 #include "sky/engine/core/page/EditorClient.h" |
| 55 #include "sky/engine/core/page/EventWithHitTestResults.h" | |
| 56 #include "sky/engine/core/page/FocusController.h" | 55 #include "sky/engine/core/page/FocusController.h" |
| 57 #include "sky/engine/core/page/Page.h" | 56 #include "sky/engine/core/page/Page.h" |
| 58 #include "sky/engine/core/rendering/HitTestRequest.h" | 57 #include "sky/engine/core/rendering/HitTestRequest.h" |
| 59 #include "sky/engine/core/rendering/HitTestResult.h" | 58 #include "sky/engine/core/rendering/HitTestResult.h" |
| 60 #include "sky/engine/core/rendering/RenderLayer.h" | 59 #include "sky/engine/core/rendering/RenderLayer.h" |
| 61 #include "sky/engine/core/rendering/RenderView.h" | 60 #include "sky/engine/core/rendering/RenderView.h" |
| 62 #include "sky/engine/core/rendering/style/RenderStyle.h" | 61 #include "sky/engine/core/rendering/style/RenderStyle.h" |
| 63 #include "sky/engine/platform/TraceEvent.h" | 62 #include "sky/engine/platform/TraceEvent.h" |
| 64 #include "sky/engine/platform/KeyboardCodes.h" | 63 #include "sky/engine/platform/KeyboardCodes.h" |
| 65 #include "sky/engine/platform/geometry/FloatPoint.h" | 64 #include "sky/engine/platform/geometry/FloatPoint.h" |
| (...skipping 555 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 621 | 620 |
| 622 void EventHandler::focusDocumentView() | 621 void EventHandler::focusDocumentView() |
| 623 { | 622 { |
| 624 Page* page = m_frame->page(); | 623 Page* page = m_frame->page(); |
| 625 if (!page) | 624 if (!page) |
| 626 return; | 625 return; |
| 627 page->focusController().focusDocumentView(m_frame); | 626 page->focusController().focusDocumentView(m_frame); |
| 628 } | 627 } |
| 629 | 628 |
| 630 } // namespace blink | 629 } // namespace blink |
| OLD | NEW |