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 751 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
762 | 762 |
763 bool EditorClientImpl::spellingUIIsShowing() | 763 bool EditorClientImpl::spellingUIIsShowing() |
764 { | 764 { |
765 if (m_webView->spellCheckClient()) | 765 if (m_webView->spellCheckClient()) |
766 return m_webView->spellCheckClient()->isShowingSpellingUI(); | 766 return m_webView->spellCheckClient()->isShowingSpellingUI(); |
767 return false; | 767 return false; |
768 } | 768 } |
769 | 769 |
770 bool EditorClientImpl::supportsGlobalSelection() | 770 bool EditorClientImpl::supportsGlobalSelection() |
771 { | 771 { |
772 #if OS(POSIX) && !OS(MACOSX) | 772 #if OS(WIN) || OS(MACOSX) |
| 773 return false; |
| 774 #else |
773 return true; | 775 return true; |
774 #else | |
775 return false; | |
776 #endif | 776 #endif |
777 } | 777 } |
778 | 778 |
779 void EditorClientImpl::willSetInputMethodState() | 779 void EditorClientImpl::willSetInputMethodState() |
780 { | 780 { |
781 if (m_webView->client()) | 781 if (m_webView->client()) |
782 m_webView->client()->resetInputMethod(); | 782 m_webView->client()->resetInputMethod(); |
783 } | 783 } |
784 | 784 |
785 } // namesace WebKit | 785 } // namesace WebKit |
OLD | NEW |