| 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 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 void didCancelCompositionOnSelectionChange() override; | 200 void didCancelCompositionOnSelectionChange() override; |
| 201 void resetInputMethod() override; | 201 void resetInputMethod() override; |
| 202 void showVirtualKeyboard() override; | 202 void showVirtualKeyboard() override; |
| 203 | 203 |
| 204 void registerViewportLayers() const override; | 204 void registerViewportLayers() const override; |
| 205 | 205 |
| 206 void showUnhandledTapUIIfNeeded(IntPoint, Node*, bool) override; | 206 void showUnhandledTapUIIfNeeded(IntPoint, Node*, bool) override; |
| 207 void onMouseDown(Node*) override; | 207 void onMouseDown(Node*) override; |
| 208 void didUpdateBrowserControls() const override; | 208 void didUpdateBrowserControls() const override; |
| 209 | 209 |
| 210 CompositorProxyClient* createCompositorProxyClient(LocalFrame*) override; | 210 CompositorProxyClient* createCompositorProxyClient( |
| 211 CompositorProxyClient::Type, |
| 212 LocalFrame*) override; |
| 211 FloatSize elasticOverscroll() const override; | 213 FloatSize elasticOverscroll() const override; |
| 212 | 214 |
| 213 void didObserveNonGetFetchFromScript() const override; | 215 void didObserveNonGetFetchFromScript() const override; |
| 214 | 216 |
| 215 std::unique_ptr<WebFrameScheduler> createFrameScheduler( | 217 std::unique_ptr<WebFrameScheduler> createFrameScheduler( |
| 216 BlameContext*) override; | 218 BlameContext*) override; |
| 217 | 219 |
| 218 double lastFrameTimeMonotonic() const override; | 220 double lastFrameTimeMonotonic() const override; |
| 219 | 221 |
| 220 void notifyPopupOpeningObservers() const; | 222 void notifyPopupOpeningObservers() const; |
| (...skipping 19 matching lines...) Expand all Loading... |
| 240 | 242 |
| 241 DEFINE_TYPE_CASTS(ChromeClientImpl, | 243 DEFINE_TYPE_CASTS(ChromeClientImpl, |
| 242 ChromeClient, | 244 ChromeClient, |
| 243 client, | 245 client, |
| 244 client->isChromeClientImpl(), | 246 client->isChromeClientImpl(), |
| 245 client.isChromeClientImpl()); | 247 client.isChromeClientImpl()); |
| 246 | 248 |
| 247 } // namespace blink | 249 } // namespace blink |
| 248 | 250 |
| 249 #endif | 251 #endif |
| OLD | NEW |