OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2004, 2008, 2009, 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2004, 2008, 2009, 2010 Apple Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 #include "core/page/EditorClient.h" | 52 #include "core/page/EditorClient.h" |
53 #include "core/page/EventHandler.h" | 53 #include "core/page/EventHandler.h" |
54 #include "core/page/FocusController.h" | 54 #include "core/page/FocusController.h" |
55 #include "core/page/Frame.h" | 55 #include "core/page/Frame.h" |
56 #include "core/page/FrameTree.h" | 56 #include "core/page/FrameTree.h" |
57 #include "core/page/FrameView.h" | 57 #include "core/page/FrameView.h" |
58 #include "core/page/Page.h" | 58 #include "core/page/Page.h" |
59 #include "core/page/Settings.h" | 59 #include "core/page/Settings.h" |
60 #include "core/page/SpatialNavigation.h" | 60 #include "core/page/SpatialNavigation.h" |
61 #include "core/platform/SecureTextInput.h" | 61 #include "core/platform/SecureTextInput.h" |
62 #include "core/platform/graphics/FloatQuad.h" | |
63 #include "core/platform/graphics/GraphicsContext.h" | 62 #include "core/platform/graphics/GraphicsContext.h" |
64 #include "core/rendering/HitTestRequest.h" | 63 #include "core/rendering/HitTestRequest.h" |
65 #include "core/rendering/HitTestResult.h" | 64 #include "core/rendering/HitTestResult.h" |
66 #include "core/rendering/InlineTextBox.h" | 65 #include "core/rendering/InlineTextBox.h" |
67 #include "core/rendering/RenderText.h" | 66 #include "core/rendering/RenderText.h" |
68 #include "core/rendering/RenderTheme.h" | 67 #include "core/rendering/RenderTheme.h" |
69 #include "core/rendering/RenderView.h" | 68 #include "core/rendering/RenderView.h" |
70 #include "core/rendering/RenderWidget.h" | 69 #include "core/rendering/RenderWidget.h" |
| 70 #include "platform/geometry/FloatQuad.h" |
71 #include "wtf/text/CString.h" | 71 #include "wtf/text/CString.h" |
72 | 72 |
73 #define EDIT_DEBUG 0 | 73 #define EDIT_DEBUG 0 |
74 | 74 |
75 namespace WebCore { | 75 namespace WebCore { |
76 | 76 |
77 using namespace HTMLNames; | 77 using namespace HTMLNames; |
78 | 78 |
79 static inline LayoutUnit NoXPosForVerticalArrowNavigation() | 79 static inline LayoutUnit NoXPosForVerticalArrowNavigation() |
80 { | 80 { |
(...skipping 1905 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1986 sel.showTreeForThis(); | 1986 sel.showTreeForThis(); |
1987 } | 1987 } |
1988 | 1988 |
1989 void showTree(const WebCore::FrameSelection* sel) | 1989 void showTree(const WebCore::FrameSelection* sel) |
1990 { | 1990 { |
1991 if (sel) | 1991 if (sel) |
1992 sel->showTreeForThis(); | 1992 sel->showTreeForThis(); |
1993 } | 1993 } |
1994 | 1994 |
1995 #endif | 1995 #endif |
OLD | NEW |