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 "InlineTextBox.h" | 50 #include "InlineTextBox.h" |
51 #include "NodeTraversal.h" | 51 #include "NodeTraversal.h" |
52 #include "Page.h" | 52 #include "Page.h" |
53 #include "Range.h" | 53 #include "Range.h" |
54 #include "RenderText.h" | 54 #include "RenderText.h" |
55 #include "RenderTextControl.h" | 55 #include "RenderTextControl.h" |
56 #include "RenderTheme.h" | 56 #include "RenderTheme.h" |
57 #include "RenderView.h" | 57 #include "RenderView.h" |
58 #include "RenderWidget.h" | 58 #include "RenderWidget.h" |
59 #include "RenderedPosition.h" | 59 #include "RenderedPosition.h" |
60 #include "SecureTextInput.h" | |
61 #include "Settings.h" | 60 #include "Settings.h" |
62 #include "SpatialNavigation.h" | 61 #include "SpatialNavigation.h" |
63 #include "StylePropertySet.h" | 62 #include "StylePropertySet.h" |
64 #include "TextIterator.h" | 63 #include "TextIterator.h" |
65 #include "TypingCommand.h" | 64 #include "TypingCommand.h" |
66 #include "VisibleUnits.h" | 65 #include "VisibleUnits.h" |
| 66 #include "core/platform/SecureTextInput.h" |
67 #include "core/platform/graphics/FloatQuad.h" | 67 #include "core/platform/graphics/FloatQuad.h" |
68 #include "core/platform/graphics/GraphicsContext.h" | 68 #include "core/platform/graphics/GraphicsContext.h" |
69 #include "htmlediting.h" | 69 #include "htmlediting.h" |
70 #include <wtf/text/CString.h> | 70 #include <wtf/text/CString.h> |
71 | 71 |
72 #define EDIT_DEBUG 0 | 72 #define EDIT_DEBUG 0 |
73 | 73 |
74 namespace WebCore { | 74 namespace WebCore { |
75 | 75 |
76 using namespace HTMLNames; | 76 using namespace HTMLNames; |
(...skipping 1976 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2053 sel.showTreeForThis(); | 2053 sel.showTreeForThis(); |
2054 } | 2054 } |
2055 | 2055 |
2056 void showTree(const WebCore::FrameSelection* sel) | 2056 void showTree(const WebCore::FrameSelection* sel) |
2057 { | 2057 { |
2058 if (sel) | 2058 if (sel) |
2059 sel->showTreeForThis(); | 2059 sel->showTreeForThis(); |
2060 } | 2060 } |
2061 | 2061 |
2062 #endif | 2062 #endif |
OLD | NEW |