| 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 16 matching lines...) Expand all Loading... |
| 27 #include "config.h" | 27 #include "config.h" |
| 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 "KeyboardCodes.h" | |
| 38 #include "KeyboardEvent.h" | 37 #include "KeyboardEvent.h" |
| 39 #include "NotImplemented.h" | 38 #include "NotImplemented.h" |
| 40 #include "Page.h" | 39 #include "Page.h" |
| 41 #include "PlatformKeyboardEvent.h" | 40 #include "PlatformKeyboardEvent.h" |
| 42 #include "RenderObject.h" | 41 #include "RenderObject.h" |
| 43 #include "Settings.h" | 42 #include "Settings.h" |
| 44 #include "SpellChecker.h" | 43 #include "SpellChecker.h" |
| 45 #include "UndoStep.h" | 44 #include "UndoStep.h" |
| 46 #include "WebAutofillClient.h" | 45 #include "WebAutofillClient.h" |
| 47 #include "WebEditingAction.h" | 46 #include "WebEditingAction.h" |
| 48 #include "WebElement.h" | 47 #include "WebElement.h" |
| 49 #include "WebFrameClient.h" | 48 #include "WebFrameClient.h" |
| 50 #include "WebFrameImpl.h" | 49 #include "WebFrameImpl.h" |
| 51 #include "WebInputElement.h" | 50 #include "WebInputElement.h" |
| 52 #include "WebInputEventConversion.h" | 51 #include "WebInputEventConversion.h" |
| 53 #include "WebKit.h" | 52 #include "WebKit.h" |
| 54 #include "WebNode.h" | 53 #include "WebNode.h" |
| 55 #include "WebPermissionClient.h" | 54 #include "WebPermissionClient.h" |
| 56 #include "WebRange.h" | 55 #include "WebRange.h" |
| 57 #include "WebSpellCheckClient.h" | 56 #include "WebSpellCheckClient.h" |
| 58 #include "WebTextAffinity.h" | 57 #include "WebTextAffinity.h" |
| 59 #include "WebTextCheckingCompletionImpl.h" | 58 #include "WebTextCheckingCompletionImpl.h" |
| 60 #include "WebTextCheckingResult.h" | 59 #include "WebTextCheckingResult.h" |
| 61 #include "WebViewClient.h" | 60 #include "WebViewClient.h" |
| 62 #include "WebViewImpl.h" | 61 #include "WebViewImpl.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 |
| 72 // into a single action. | 72 // into a single action. |
| (...skipping 787 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 |