| 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 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 void didAssociateFormControlsAfterLoad(LocalFrame*) override; | 198 void didAssociateFormControlsAfterLoad(LocalFrame*) override; |
| 199 void handleKeyboardEventOnTextField(HTMLInputElement&, | 199 void handleKeyboardEventOnTextField(HTMLInputElement&, |
| 200 KeyboardEvent&) override; | 200 KeyboardEvent&) override; |
| 201 void didChangeValueInTextField(HTMLFormControlElement&) override; | 201 void didChangeValueInTextField(HTMLFormControlElement&) override; |
| 202 void didEndEditingOnTextField(HTMLInputElement&) override; | 202 void didEndEditingOnTextField(HTMLInputElement&) override; |
| 203 void openTextDataListChooser(HTMLInputElement&) override; | 203 void openTextDataListChooser(HTMLInputElement&) override; |
| 204 void textFieldDataListChanged(HTMLInputElement&) override; | 204 void textFieldDataListChanged(HTMLInputElement&) override; |
| 205 void ajaxSucceeded(LocalFrame*) override; | 205 void ajaxSucceeded(LocalFrame*) override; |
| 206 | 206 |
| 207 void showVirtualKeyboardOnElementFocus(LocalFrame&) override; | 207 void showVirtualKeyboardOnElementFocus(LocalFrame&) override; |
| 208 void updateCompositionInfo(LocalFrame*, bool immediateRequest) override; |
| 208 | 209 |
| 209 void registerViewportLayers() const override; | 210 void registerViewportLayers() const override; |
| 210 | 211 |
| 211 void showUnhandledTapUIIfNeeded(IntPoint, Node*, bool) override; | 212 void showUnhandledTapUIIfNeeded(IntPoint, Node*, bool) override; |
| 212 void onMouseDown(Node*) override; | 213 void onMouseDown(Node*) override; |
| 213 void didUpdateBrowserControls() const override; | 214 void didUpdateBrowserControls() const override; |
| 214 | 215 |
| 215 CompositorWorkerProxyClient* createCompositorWorkerProxyClient( | 216 CompositorWorkerProxyClient* createCompositorWorkerProxyClient( |
| 216 LocalFrame*) override; | 217 LocalFrame*) override; |
| 217 AnimationWorkletProxyClient* createAnimationWorkletProxyClient( | 218 AnimationWorkletProxyClient* createAnimationWorkletProxyClient( |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 | 252 |
| 252 DEFINE_TYPE_CASTS(ChromeClientImpl, | 253 DEFINE_TYPE_CASTS(ChromeClientImpl, |
| 253 ChromeClient, | 254 ChromeClient, |
| 254 client, | 255 client, |
| 255 client->isChromeClientImpl(), | 256 client->isChromeClientImpl(), |
| 256 client.isChromeClientImpl()); | 257 client.isChromeClientImpl()); |
| 257 | 258 |
| 258 } // namespace blink | 259 } // namespace blink |
| 259 | 260 |
| 260 #endif | 261 #endif |
| OLD | NEW |