| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007 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 12 matching lines...) Expand all Loading... |
| 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 25 */ | 25 */ |
| 26 | 26 |
| 27 #ifndef EditorClient_h | 27 #ifndef EditorClient_h |
| 28 #define EditorClient_h | 28 #define EditorClient_h |
| 29 | 29 |
| 30 #include "core/editing/EditorInsertAction.h" | 30 #include "core/editing/EditorInsertAction.h" |
| 31 #include "core/editing/TextAffinity.h" | 31 #include "core/editing/TextAffinity.h" |
| 32 #include "core/editing/UndoStep.h" | 32 #include "core/editing/UndoStep.h" |
| 33 #include "core/platform/graphics/FloatRect.h" | |
| 34 #include "core/platform/text/TextChecking.h" | 33 #include "core/platform/text/TextChecking.h" |
| 34 #include "platform/geometry/FloatRect.h" |
| 35 #include "wtf/Forward.h" | 35 #include "wtf/Forward.h" |
| 36 #include "wtf/Vector.h" | 36 #include "wtf/Vector.h" |
| 37 | 37 |
| 38 namespace WebCore { | 38 namespace WebCore { |
| 39 | 39 |
| 40 class ArchiveResource; | 40 class ArchiveResource; |
| 41 class DocumentFragment; | 41 class DocumentFragment; |
| 42 class Editor; | 42 class Editor; |
| 43 class Element; | 43 class Element; |
| 44 class Frame; | 44 class Frame; |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 virtual void willSetInputMethodState() = 0; | 105 virtual void willSetInputMethodState() = 0; |
| 106 | 106 |
| 107 // Support for global selections, used on platforms like the X Window System
that treat | 107 // Support for global selections, used on platforms like the X Window System
that treat |
| 108 // selection as a type of clipboard. | 108 // selection as a type of clipboard. |
| 109 virtual bool supportsGlobalSelection() { return false; } | 109 virtual bool supportsGlobalSelection() { return false; } |
| 110 }; | 110 }; |
| 111 | 111 |
| 112 } | 112 } |
| 113 | 113 |
| 114 #endif // EditorClient_h | 114 #endif // EditorClient_h |
| OLD | NEW |