| 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 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 | 208 |
| 209 void RegisterViewportLayers() const override; | 209 void RegisterViewportLayers() const override; |
| 210 | 210 |
| 211 void ShowUnhandledTapUIIfNeeded(IntPoint, Node*, bool) override; | 211 void ShowUnhandledTapUIIfNeeded(IntPoint, Node*, bool) override; |
| 212 void OnMouseDown(Node*) override; | 212 void OnMouseDown(Node&) override; |
| 213 void DidUpdateBrowserControls() const override; | 213 void DidUpdateBrowserControls() const override; |
| 214 | 214 |
| 215 CompositorWorkerProxyClient* CreateCompositorWorkerProxyClient( | 215 CompositorWorkerProxyClient* CreateCompositorWorkerProxyClient( |
| 216 LocalFrame*) override; | 216 LocalFrame*) override; |
| 217 AnimationWorkletProxyClient* CreateAnimationWorkletProxyClient( | 217 AnimationWorkletProxyClient* CreateAnimationWorkletProxyClient( |
| 218 LocalFrame*) override; | 218 LocalFrame*) override; |
| 219 | 219 |
| 220 FloatSize ElasticOverscroll() const override; | 220 FloatSize ElasticOverscroll() const override; |
| 221 | 221 |
| 222 void DidObserveNonGetFetchFromScript() const override; | 222 void DidObserveNonGetFetchFromScript() const override; |
| (...skipping 28 matching lines...) Expand all Loading... |
| 251 | 251 |
| 252 DEFINE_TYPE_CASTS(ChromeClientImpl, | 252 DEFINE_TYPE_CASTS(ChromeClientImpl, |
| 253 ChromeClient, | 253 ChromeClient, |
| 254 client, | 254 client, |
| 255 client->IsChromeClientImpl(), | 255 client->IsChromeClientImpl(), |
| 256 client.IsChromeClientImpl()); | 256 client.IsChromeClientImpl()); |
| 257 | 257 |
| 258 } // namespace blink | 258 } // namespace blink |
| 259 | 259 |
| 260 #endif | 260 #endif |
| OLD | NEW |