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 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
189 void didAssociateFormControlsAfterLoad(LocalFrame*) override; | 189 void didAssociateFormControlsAfterLoad(LocalFrame*) override; |
190 void handleKeyboardEventOnTextField(HTMLInputElement&, | 190 void handleKeyboardEventOnTextField(HTMLInputElement&, |
191 KeyboardEvent&) override; | 191 KeyboardEvent&) override; |
192 void didChangeValueInTextField(HTMLFormControlElement&) override; | 192 void didChangeValueInTextField(HTMLFormControlElement&) override; |
193 void didEndEditingOnTextField(HTMLInputElement&) override; | 193 void didEndEditingOnTextField(HTMLInputElement&) override; |
194 void openTextDataListChooser(HTMLInputElement&) override; | 194 void openTextDataListChooser(HTMLInputElement&) override; |
195 void textFieldDataListChanged(HTMLInputElement&) override; | 195 void textFieldDataListChanged(HTMLInputElement&) override; |
196 void ajaxSucceeded(LocalFrame*) override; | 196 void ajaxSucceeded(LocalFrame*) override; |
197 | 197 |
198 void didCancelCompositionOnSelectionChange() override; | 198 void didCancelCompositionOnSelectionChange() override; |
199 void willSetInputMethodState() override; | 199 void resetInputMethod() override; |
200 void didUpdateTextOfFocusedElementByNonUserInput(LocalFrame&) override; | 200 void didUpdateTextOfFocusedElementByNonUserInput(LocalFrame&) override; |
201 void showImeIfNeeded() override; | 201 void showImeIfNeeded() override; |
202 | 202 |
203 void registerViewportLayers() const override; | 203 void registerViewportLayers() const override; |
204 | 204 |
205 void showUnhandledTapUIIfNeeded(IntPoint, Node*, bool) override; | 205 void showUnhandledTapUIIfNeeded(IntPoint, Node*, bool) override; |
206 void onMouseDown(Node*) override; | 206 void onMouseDown(Node*) override; |
207 void didUpdateBrowserControls() const override; | 207 void didUpdateBrowserControls() const override; |
208 | 208 |
209 CompositorProxyClient* createCompositorProxyClient(LocalFrame*) override; | 209 CompositorProxyClient* createCompositorProxyClient(LocalFrame*) override; |
(...skipping 29 matching lines...) Expand all Loading... |
239 | 239 |
240 DEFINE_TYPE_CASTS(ChromeClientImpl, | 240 DEFINE_TYPE_CASTS(ChromeClientImpl, |
241 ChromeClient, | 241 ChromeClient, |
242 client, | 242 client, |
243 client->isChromeClientImpl(), | 243 client->isChromeClientImpl(), |
244 client.isChromeClientImpl()); | 244 client.isChromeClientImpl()); |
245 | 245 |
246 } // namespace blink | 246 } // namespace blink |
247 | 247 |
248 #endif | 248 #endif |
OLD | NEW |