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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 #include "core/frame/LocalDOMWindow.h" | 50 #include "core/frame/LocalDOMWindow.h" |
51 #include "core/frame/LocalFrame.h" | 51 #include "core/frame/LocalFrame.h" |
52 #include "core/frame/Settings.h" | 52 #include "core/frame/Settings.h" |
53 #include "core/html/HTMLBodyElement.h" | 53 #include "core/html/HTMLBodyElement.h" |
54 #include "core/html/HTMLFormElement.h" | 54 #include "core/html/HTMLFormElement.h" |
55 #include "core/html/HTMLFrameElementBase.h" | 55 #include "core/html/HTMLFrameElementBase.h" |
56 #include "core/html/HTMLInputElement.h" | 56 #include "core/html/HTMLInputElement.h" |
57 #include "core/html/HTMLSelectElement.h" | 57 #include "core/html/HTMLSelectElement.h" |
58 #include "core/layout/HitTestRequest.h" | 58 #include "core/layout/HitTestRequest.h" |
59 #include "core/layout/HitTestResult.h" | 59 #include "core/layout/HitTestResult.h" |
| 60 #include "core/layout/Layer.h" |
60 #include "core/layout/LayoutTheme.h" | 61 #include "core/layout/LayoutTheme.h" |
61 #include "core/page/EditorClient.h" | 62 #include "core/page/EditorClient.h" |
62 #include "core/page/EventHandler.h" | 63 #include "core/page/EventHandler.h" |
63 #include "core/page/FocusController.h" | 64 #include "core/page/FocusController.h" |
64 #include "core/page/FrameTree.h" | 65 #include "core/page/FrameTree.h" |
65 #include "core/page/Page.h" | 66 #include "core/page/Page.h" |
66 #include "core/page/SpatialNavigation.h" | 67 #include "core/page/SpatialNavigation.h" |
67 #include "core/rendering/InlineTextBox.h" | 68 #include "core/rendering/InlineTextBox.h" |
68 #include "core/rendering/RenderLayer.h" | |
69 #include "core/rendering/RenderPart.h" | 69 #include "core/rendering/RenderPart.h" |
70 #include "core/rendering/RenderText.h" | 70 #include "core/rendering/RenderText.h" |
71 #include "core/rendering/RenderView.h" | 71 #include "core/rendering/RenderView.h" |
72 #include "platform/SecureTextInput.h" | 72 #include "platform/SecureTextInput.h" |
73 #include "platform/geometry/FloatQuad.h" | 73 #include "platform/geometry/FloatQuad.h" |
74 #include "platform/graphics/GraphicsContext.h" | 74 #include "platform/graphics/GraphicsContext.h" |
75 #include "platform/text/UnicodeUtilities.h" | 75 #include "platform/text/UnicodeUtilities.h" |
76 #include "wtf/text/CString.h" | 76 #include "wtf/text/CString.h" |
77 #include <stdio.h> | 77 #include <stdio.h> |
78 | 78 |
(...skipping 1842 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1921 sel.showTreeForThis(); | 1921 sel.showTreeForThis(); |
1922 } | 1922 } |
1923 | 1923 |
1924 void showTree(const blink::FrameSelection* sel) | 1924 void showTree(const blink::FrameSelection* sel) |
1925 { | 1925 { |
1926 if (sel) | 1926 if (sel) |
1927 sel->showTreeForThis(); | 1927 sel->showTreeForThis(); |
1928 } | 1928 } |
1929 | 1929 |
1930 #endif | 1930 #endif |
OLD | NEW |