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 29 matching lines...) Expand all Loading... |
40 #include "WebPermissionClient.h" | 40 #include "WebPermissionClient.h" |
41 #include "WebRange.h" | 41 #include "WebRange.h" |
42 #include "WebSpellCheckClient.h" | 42 #include "WebSpellCheckClient.h" |
43 #include "WebTextAffinity.h" | 43 #include "WebTextAffinity.h" |
44 #include "WebTextCheckingCompletionImpl.h" | 44 #include "WebTextCheckingCompletionImpl.h" |
45 #include "WebTextCheckingResult.h" | 45 #include "WebTextCheckingResult.h" |
46 #include "WebViewClient.h" | 46 #include "WebViewClient.h" |
47 #include "WebViewImpl.h" | 47 #include "WebViewImpl.h" |
48 #include "core/dom/Document.h" | 48 #include "core/dom/Document.h" |
49 #include "core/dom/DocumentMarkerController.h" | 49 #include "core/dom/DocumentMarkerController.h" |
50 #include "core/events/EventNames.h" | 50 #include "core/dom/EventNames.h" |
51 #include "core/events/KeyboardEvent.h" | 51 #include "core/dom/KeyboardEvent.h" |
52 #include "core/editing/Editor.h" | 52 #include "core/editing/Editor.h" |
53 #include "core/editing/SpellCheckRequester.h" | 53 #include "core/editing/SpellCheckRequester.h" |
54 #include "core/editing/TextCheckingHelper.h" | 54 #include "core/editing/TextCheckingHelper.h" |
55 #include "core/editing/UndoStep.h" | 55 #include "core/editing/UndoStep.h" |
56 #include "core/html/HTMLInputElement.h" | 56 #include "core/html/HTMLInputElement.h" |
57 #include "core/page/EventHandler.h" | 57 #include "core/page/EventHandler.h" |
58 #include "core/page/Frame.h" | 58 #include "core/page/Frame.h" |
59 #include "core/page/Page.h" | 59 #include "core/page/Page.h" |
60 #include "core/page/Settings.h" | 60 #include "core/page/Settings.h" |
61 #include "core/platform/NotImplemented.h" | 61 #include "core/platform/NotImplemented.h" |
(...skipping 715 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
777 #endif | 777 #endif |
778 } | 778 } |
779 | 779 |
780 void EditorClientImpl::willSetInputMethodState() | 780 void EditorClientImpl::willSetInputMethodState() |
781 { | 781 { |
782 if (m_webView->client()) | 782 if (m_webView->client()) |
783 m_webView->client()->resetInputMethod(); | 783 m_webView->client()->resetInputMethod(); |
784 } | 784 } |
785 | 785 |
786 } // namesace WebKit | 786 } // namesace WebKit |
OLD | NEW |