OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008 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 16 matching lines...) Expand all Loading... |
27 #define InputMethodController_h | 27 #define InputMethodController_h |
28 | 28 |
29 #include "core/CoreExport.h" | 29 #include "core/CoreExport.h" |
30 #include "core/dom/Range.h" | 30 #include "core/dom/Range.h" |
31 #include "core/dom/SynchronousMutationObserver.h" | 31 #include "core/dom/SynchronousMutationObserver.h" |
32 #include "core/editing/CompositionUnderline.h" | 32 #include "core/editing/CompositionUnderline.h" |
33 #include "core/editing/EphemeralRange.h" | 33 #include "core/editing/EphemeralRange.h" |
34 #include "core/editing/FrameSelection.h" | 34 #include "core/editing/FrameSelection.h" |
35 #include "core/editing/PlainTextRange.h" | 35 #include "core/editing/PlainTextRange.h" |
36 #include "platform/heap/Handle.h" | 36 #include "platform/heap/Handle.h" |
| 37 #include "platform/wtf/Vector.h" |
37 #include "public/platform/WebTextInputInfo.h" | 38 #include "public/platform/WebTextInputInfo.h" |
38 #include "public/platform/WebTextInputType.h" | 39 #include "public/platform/WebTextInputType.h" |
39 #include "wtf/Vector.h" | |
40 | 40 |
41 namespace blink { | 41 namespace blink { |
42 | 42 |
43 class Editor; | 43 class Editor; |
44 class LocalFrame; | 44 class LocalFrame; |
45 class Range; | 45 class Range; |
46 | 46 |
47 class CORE_EXPORT InputMethodController final | 47 class CORE_EXPORT InputMethodController final |
48 : public GarbageCollectedFinalized<InputMethodController>, | 48 : public GarbageCollectedFinalized<InputMethodController>, |
49 public SynchronousMutationObserver { | 49 public SynchronousMutationObserver { |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 int TextInputFlags() const; | 163 int TextInputFlags() const; |
164 WebTextInputMode InputModeOfFocusedElement() const; | 164 WebTextInputMode InputModeOfFocusedElement() const; |
165 | 165 |
166 // Implements |SynchronousMutationObserver|. | 166 // Implements |SynchronousMutationObserver|. |
167 void ContextDestroyed(Document*) final; | 167 void ContextDestroyed(Document*) final; |
168 }; | 168 }; |
169 | 169 |
170 } // namespace blink | 170 } // namespace blink |
171 | 171 |
172 #endif // InputMethodController_h | 172 #endif // InputMethodController_h |
OLD | NEW |