| 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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 virtual void attachRootGraphicsLayer(WebCore::Frame*, WebCore::GraphicsLayer
*); | 145 virtual void attachRootGraphicsLayer(WebCore::Frame*, WebCore::GraphicsLayer
*); |
| 146 | 146 |
| 147 // Sets a flag to specify that the next time content is drawn to the window, | 147 // Sets a flag to specify that the next time content is drawn to the window, |
| 148 // the changes appear on the screen in synchrony with updates to GraphicsLay
ers. | 148 // the changes appear on the screen in synchrony with updates to GraphicsLay
ers. |
| 149 virtual void setNeedsOneShotDrawingSynchronization() { } | 149 virtual void setNeedsOneShotDrawingSynchronization() { } |
| 150 | 150 |
| 151 // Sets a flag to specify that the view needs to be updated, so we need | 151 // Sets a flag to specify that the view needs to be updated, so we need |
| 152 // to do an eager layout before the drawing. | 152 // to do an eager layout before the drawing. |
| 153 virtual void scheduleCompositingLayerSync(); | 153 virtual void scheduleCompositingLayerSync(); |
| 154 | 154 |
| 155 // Returns true if accelerated compositing is supported. | 155 virtual CompositingTriggerFlags allowedCompositingTriggers() const; |
| 156 virtual bool allowsAcceleratedCompositing() const; | |
| 157 #endif | 156 #endif |
| 158 | 157 |
| 159 virtual bool supportsFullscreenForNode(const WebCore::Node*); | 158 virtual bool supportsFullscreenForNode(const WebCore::Node*); |
| 160 virtual void enterFullscreenForNode(WebCore::Node*); | 159 virtual void enterFullscreenForNode(WebCore::Node*); |
| 161 virtual void exitFullscreenForNode(WebCore::Node*); | 160 virtual void exitFullscreenForNode(WebCore::Node*); |
| 162 | 161 |
| 163 // ChromeClientChromium methods: | 162 // ChromeClientChromium methods: |
| 164 virtual void popupOpened(WebCore::PopupContainer* popupContainer, | 163 virtual void popupOpened(WebCore::PopupContainer* popupContainer, |
| 165 const WebCore::IntRect& bounds, | 164 const WebCore::IntRect& bounds, |
| 166 bool handleExternally); | 165 bool handleExternally); |
| (...skipping 19 matching lines...) Expand all Loading... |
| 186 bool m_toolbarsVisible; | 185 bool m_toolbarsVisible; |
| 187 bool m_statusbarVisible; | 186 bool m_statusbarVisible; |
| 188 bool m_scrollbarsVisible; | 187 bool m_scrollbarsVisible; |
| 189 bool m_menubarVisible; | 188 bool m_menubarVisible; |
| 190 bool m_resizable; | 189 bool m_resizable; |
| 191 }; | 190 }; |
| 192 | 191 |
| 193 } // namespace WebKit | 192 } // namespace WebKit |
| 194 | 193 |
| 195 #endif | 194 #endif |
| OLD | NEW |