| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). | 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). |
| 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 are | 6 * modification, are permitted provided that the following conditions are |
| 7 * met: | 7 * met: |
| 8 * | 8 * |
| 9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 994 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1005 WebLocalFrameImpl* webframe = WebLocalFrameImpl::fromFrame(frame); | 1005 WebLocalFrameImpl* webframe = WebLocalFrameImpl::fromFrame(frame); |
| 1006 if (webframe->autofillClient()) | 1006 if (webframe->autofillClient()) |
| 1007 webframe->autofillClient()->didAssociateFormControlsDynamically(); | 1007 webframe->autofillClient()->didAssociateFormControlsDynamically(); |
| 1008 } | 1008 } |
| 1009 | 1009 |
| 1010 void ChromeClientImpl::didCancelCompositionOnSelectionChange() { | 1010 void ChromeClientImpl::didCancelCompositionOnSelectionChange() { |
| 1011 if (m_webView->client()) | 1011 if (m_webView->client()) |
| 1012 m_webView->client()->didCancelCompositionOnSelectionChange(); | 1012 m_webView->client()->didCancelCompositionOnSelectionChange(); |
| 1013 } | 1013 } |
| 1014 | 1014 |
| 1015 void ChromeClientImpl::willSetInputMethodState() { | 1015 void ChromeClientImpl::resetInputMethod() { |
| 1016 if (m_webView->client()) | 1016 if (m_webView->client()) |
| 1017 m_webView->client()->resetInputMethod(); | 1017 m_webView->client()->resetInputMethod(); |
| 1018 } | 1018 } |
| 1019 | 1019 |
| 1020 void ChromeClientImpl::showImeIfNeeded() { | 1020 void ChromeClientImpl::showImeIfNeeded() { |
| 1021 if (m_webView->client()) | 1021 if (m_webView->client()) |
| 1022 m_webView->client()->showImeIfNeeded(); | 1022 m_webView->client()->showImeIfNeeded(); |
| 1023 } | 1023 } |
| 1024 | 1024 |
| 1025 void ChromeClientImpl::showUnhandledTapUIIfNeeded( | 1025 void ChromeClientImpl::showUnhandledTapUIIfNeeded( |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1161 if (RuntimeEnabledFeatures::presentationEnabled()) | 1161 if (RuntimeEnabledFeatures::presentationEnabled()) |
| 1162 PresentationController::provideTo(frame, client->presentationClient()); | 1162 PresentationController::provideTo(frame, client->presentationClient()); |
| 1163 if (RuntimeEnabledFeatures::audioOutputDevicesEnabled()) | 1163 if (RuntimeEnabledFeatures::audioOutputDevicesEnabled()) |
| 1164 provideAudioOutputDeviceClientTo(frame, | 1164 provideAudioOutputDeviceClientTo(frame, |
| 1165 AudioOutputDeviceClientImpl::create()); | 1165 AudioOutputDeviceClientImpl::create()); |
| 1166 if (RuntimeEnabledFeatures::installedAppEnabled()) | 1166 if (RuntimeEnabledFeatures::installedAppEnabled()) |
| 1167 InstalledAppController::provideTo(frame, client->installedAppClient()); | 1167 InstalledAppController::provideTo(frame, client->installedAppClient()); |
| 1168 } | 1168 } |
| 1169 | 1169 |
| 1170 } // namespace blink | 1170 } // namespace blink |
| OLD | NEW |