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) 2012 Google, Inc. All rights reserved. | 3 * Copyright (C) 2012 Google, Inc. All rights reserved. |
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 17 matching lines...) Expand all Loading... |
28 #include "EditorClientImpl.h" | 28 #include "EditorClientImpl.h" |
29 | 29 |
30 #include "Document.h" | 30 #include "Document.h" |
31 #include "Editor.h" | 31 #include "Editor.h" |
32 #include "EventHandler.h" | 32 #include "EventHandler.h" |
33 #include "EventNames.h" | 33 #include "EventNames.h" |
34 #include "Frame.h" | 34 #include "Frame.h" |
35 #include "HTMLInputElement.h" | 35 #include "HTMLInputElement.h" |
36 #include "HTMLNames.h" | 36 #include "HTMLNames.h" |
37 #include "KeyboardEvent.h" | 37 #include "KeyboardEvent.h" |
38 #include "NotImplemented.h" | |
39 #include "Page.h" | 38 #include "Page.h" |
40 #include "PlatformKeyboardEvent.h" | |
41 #include "RenderObject.h" | 39 #include "RenderObject.h" |
42 #include "Settings.h" | 40 #include "Settings.h" |
43 #include "SpellChecker.h" | 41 #include "SpellChecker.h" |
44 #include "UndoStep.h" | 42 #include "UndoStep.h" |
45 #include "WebAutofillClient.h" | 43 #include "WebAutofillClient.h" |
46 #include "WebEditingAction.h" | 44 #include "WebEditingAction.h" |
47 #include "WebElement.h" | 45 #include "WebElement.h" |
48 #include "WebFrameClient.h" | 46 #include "WebFrameClient.h" |
49 #include "WebFrameImpl.h" | 47 #include "WebFrameImpl.h" |
50 #include "WebInputElement.h" | 48 #include "WebInputElement.h" |
51 #include "WebInputEventConversion.h" | 49 #include "WebInputEventConversion.h" |
52 #include "WebKit.h" | 50 #include "WebKit.h" |
53 #include "WebNode.h" | 51 #include "WebNode.h" |
54 #include "WebPermissionClient.h" | 52 #include "WebPermissionClient.h" |
55 #include "WebRange.h" | 53 #include "WebRange.h" |
56 #include "WebSpellCheckClient.h" | 54 #include "WebSpellCheckClient.h" |
57 #include "WebTextAffinity.h" | 55 #include "WebTextAffinity.h" |
58 #include "WebTextCheckingCompletionImpl.h" | 56 #include "WebTextCheckingCompletionImpl.h" |
59 #include "WebTextCheckingResult.h" | 57 #include "WebTextCheckingResult.h" |
60 #include "WebViewClient.h" | 58 #include "WebViewClient.h" |
61 #include "WebViewImpl.h" | 59 #include "WebViewImpl.h" |
| 60 #include "core/platform/NotImplemented.h" |
| 61 #include "core/platform/PlatformKeyboardEvent.h" |
62 #include "core/platform/chromium/KeyboardCodes.h" | 62 #include "core/platform/chromium/KeyboardCodes.h" |
63 #include <wtf/text/WTFString.h> | 63 #include <wtf/text/WTFString.h> |
64 | 64 |
65 using namespace WebCore; | 65 using namespace WebCore; |
66 | 66 |
67 namespace WebKit { | 67 namespace WebKit { |
68 | 68 |
69 // Arbitrary depth limit for the undo stack, to keep it from using | 69 // Arbitrary depth limit for the undo stack, to keep it from using |
70 // unbounded memory. This is the maximum number of distinct undoable | 70 // unbounded memory. This is the maximum number of distinct undoable |
71 // actions -- unbroken stretches of typed characters are coalesced | 71 // actions -- unbroken stretches of typed characters are coalesced |
(...skipping 788 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
860 { | 860 { |
861 if (m_webView->client()) | 861 if (m_webView->client()) |
862 m_webView->client()->resetInputMethod(); | 862 m_webView->client()->resetInputMethod(); |
863 } | 863 } |
864 | 864 |
865 void EditorClientImpl::setInputMethodState(bool) | 865 void EditorClientImpl::setInputMethodState(bool) |
866 { | 866 { |
867 } | 867 } |
868 | 868 |
869 } // namesace WebKit | 869 } // namesace WebKit |
OLD | NEW |