| 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 878 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 889 if (webframe->autofillClient()) | 889 if (webframe->autofillClient()) |
| 890 webframe->autofillClient()->dataListOptionsChanged(WebInputElement(&inpu
t)); | 890 webframe->autofillClient()->dataListOptionsChanged(WebInputElement(&inpu
t)); |
| 891 } | 891 } |
| 892 | 892 |
| 893 void ChromeClientImpl::registerViewportLayers() const | 893 void ChromeClientImpl::registerViewportLayers() const |
| 894 { | 894 { |
| 895 if (m_webView->rootGraphicsLayer() && m_webView->layerTreeView() && m_webVie
w->pinchVirtualViewportEnabled()) | 895 if (m_webView->rootGraphicsLayer() && m_webView->layerTreeView() && m_webVie
w->pinchVirtualViewportEnabled()) |
| 896 m_webView->page()->frameHost().pinchViewport().registerLayersWithTreeVie
w(m_webView->layerTreeView()); | 896 m_webView->page()->frameHost().pinchViewport().registerLayersWithTreeVie
w(m_webView->layerTreeView()); |
| 897 } | 897 } |
| 898 | 898 |
| 899 void ChromeClientImpl::didUpdateTopControls() const |
| 900 { |
| 901 m_webView->didUpdateTopControls(); |
| 902 } |
| 903 |
| 899 } // namespace blink | 904 } // namespace blink |
| OLD | NEW |