| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2011 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) | 3 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) |
| 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 15 matching lines...) Expand all Loading... |
| 26 | 26 |
| 27 #include "config.h" | 27 #include "config.h" |
| 28 #include "core/editing/Editor.h" | 28 #include "core/editing/Editor.h" |
| 29 | 29 |
| 30 #include "CSSPropertyNames.h" | 30 #include "CSSPropertyNames.h" |
| 31 #include "CSSValueKeywords.h" | 31 #include "CSSValueKeywords.h" |
| 32 #include "HTMLNames.h" | 32 #include "HTMLNames.h" |
| 33 #include "core/accessibility/AXObjectCache.h" | 33 #include "core/accessibility/AXObjectCache.h" |
| 34 #include "core/css/CSSComputedStyleDeclaration.h" | 34 #include "core/css/CSSComputedStyleDeclaration.h" |
| 35 #include "core/css/StylePropertySet.h" | 35 #include "core/css/StylePropertySet.h" |
| 36 #include "core/css/StyleResolver.h" | 36 #include "core/css/resolver/StyleResolver.h" |
| 37 #include "core/dom/Clipboard.h" | 37 #include "core/dom/Clipboard.h" |
| 38 #include "core/dom/ClipboardEvent.h" | 38 #include "core/dom/ClipboardEvent.h" |
| 39 #include "core/dom/CompositionEvent.h" | 39 #include "core/dom/CompositionEvent.h" |
| 40 #include "core/dom/DocumentFragment.h" | 40 #include "core/dom/DocumentFragment.h" |
| 41 #include "core/dom/DocumentMarkerController.h" | 41 #include "core/dom/DocumentMarkerController.h" |
| 42 #include "core/dom/EventNames.h" | 42 #include "core/dom/EventNames.h" |
| 43 #include "core/dom/ExceptionCodePlaceholder.h" | 43 #include "core/dom/ExceptionCodePlaceholder.h" |
| 44 #include "core/dom/KeyboardEvent.h" | 44 #include "core/dom/KeyboardEvent.h" |
| 45 #include "core/dom/NodeList.h" | 45 #include "core/dom/NodeList.h" |
| 46 #include "core/dom/NodeTraversal.h" | 46 #include "core/dom/NodeTraversal.h" |
| (...skipping 2575 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2622 | 2622 |
| 2623 return checkingTypes; | 2623 return checkingTypes; |
| 2624 } | 2624 } |
| 2625 | 2625 |
| 2626 bool Editor::unifiedTextCheckerEnabled() const | 2626 bool Editor::unifiedTextCheckerEnabled() const |
| 2627 { | 2627 { |
| 2628 return WebCore::unifiedTextCheckerEnabled(m_frame); | 2628 return WebCore::unifiedTextCheckerEnabled(m_frame); |
| 2629 } | 2629 } |
| 2630 | 2630 |
| 2631 } // namespace WebCore | 2631 } // namespace WebCore |
| OLD | NEW |