| 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 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 void willSetInputMethodState() override; | 172 void willSetInputMethodState() override; |
| 173 void didUpdateTextOfFocusedElementByNonUserInput() override; | 173 void didUpdateTextOfFocusedElementByNonUserInput() override; |
| 174 void showImeIfNeeded() override; | 174 void showImeIfNeeded() override; |
| 175 | 175 |
| 176 void registerViewportLayers() const override; | 176 void registerViewportLayers() const override; |
| 177 | 177 |
| 178 void showUnhandledTapUIIfNeeded(IntPoint, Node*, bool) override; | 178 void showUnhandledTapUIIfNeeded(IntPoint, Node*, bool) override; |
| 179 void onMouseDown(Node*) override; | 179 void onMouseDown(Node*) override; |
| 180 void didUpdateTopControls() const override; | 180 void didUpdateTopControls() const override; |
| 181 | 181 |
| 182 CompositorProxyClient* createCompositorProxyClient() override; |
| 182 FloatSize elasticOverscroll() const override; | 183 FloatSize elasticOverscroll() const override; |
| 183 | 184 |
| 184 void didObserveNonGetFetchFromScript() const override; | 185 void didObserveNonGetFetchFromScript() const override; |
| 185 | 186 |
| 186 PassOwnPtr<WebFrameScheduler> createFrameScheduler(BlameContext*) override; | 187 PassOwnPtr<WebFrameScheduler> createFrameScheduler(BlameContext*) override; |
| 187 | 188 |
| 188 double lastFrameTimeMonotonic() const override; | 189 double lastFrameTimeMonotonic() const override; |
| 189 | 190 |
| 190 private: | 191 private: |
| 191 explicit ChromeClientImpl(WebViewImpl*); | 192 explicit ChromeClientImpl(WebViewImpl*); |
| (...skipping 11 matching lines...) Expand all Loading... |
| 203 Cursor m_lastSetMouseCursorForTesting; | 204 Cursor m_lastSetMouseCursorForTesting; |
| 204 bool m_cursorOverridden; | 205 bool m_cursorOverridden; |
| 205 bool m_didRequestNonEmptyToolTip; | 206 bool m_didRequestNonEmptyToolTip; |
| 206 }; | 207 }; |
| 207 | 208 |
| 208 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient
Impl(), client.isChromeClientImpl()); | 209 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient
Impl(), client.isChromeClientImpl()); |
| 209 | 210 |
| 210 } // namespace blink | 211 } // namespace blink |
| 211 | 212 |
| 212 #endif | 213 #endif |
| OLD | NEW |