| 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 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 // AutofillClient pass throughs: | 197 // AutofillClient pass throughs: |
| 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 handlePotentialTextSuggestionTap() override; |
| 207 void resetInputMethod() override; | 208 void resetInputMethod() override; |
| 208 void showVirtualKeyboardOnElementFocus() override; | 209 void showVirtualKeyboardOnElementFocus() override; |
| 209 | 210 |
| 210 void registerViewportLayers() const override; | 211 void registerViewportLayers() const override; |
| 211 | 212 |
| 212 void showUnhandledTapUIIfNeeded(IntPoint, Node*, bool) override; | 213 void showUnhandledTapUIIfNeeded(IntPoint, Node*, bool) override; |
| 213 void onMouseDown(Node*) override; | 214 void onMouseDown(Node*) override; |
| 214 void didUpdateBrowserControls() const override; | 215 void didUpdateBrowserControls() const override; |
| 215 | 216 |
| 216 CompositorProxyClient* createCompositorProxyClient(LocalFrame*) override; | 217 CompositorProxyClient* createCompositorProxyClient(LocalFrame*) override; |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 248 | 249 |
| 249 DEFINE_TYPE_CASTS(ChromeClientImpl, | 250 DEFINE_TYPE_CASTS(ChromeClientImpl, |
| 250 ChromeClient, | 251 ChromeClient, |
| 251 client, | 252 client, |
| 252 client->isChromeClientImpl(), | 253 client->isChromeClientImpl(), |
| 253 client.isChromeClientImpl()); | 254 client.isChromeClientImpl()); |
| 254 | 255 |
| 255 } // namespace blink | 256 } // namespace blink |
| 256 | 257 |
| 257 #endif | 258 #endif |
| OLD | NEW |