| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006 Zack Rusin <zack@kde.org> | 2 * Copyright (C) 2006 Zack Rusin <zack@kde.org> |
| 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 * All rights reserved. | 5 * All rights reserved. |
| 6 * | 6 * |
| 7 * Redistribution and use in source and binary forms, with or without | 7 * Redistribution and use in source and binary forms, with or without |
| 8 * modification, are permitted provided that the following conditions | 8 * modification, are permitted provided that the following conditions |
| 9 * are met: | 9 * are met: |
| 10 * 1. Redistributions of source code must retain the above copyright | 10 * 1. Redistributions of source code must retain the above copyright |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 #if ENABLE(NOTIFICATIONS) | 145 #if ENABLE(NOTIFICATIONS) |
| 146 virtual NotificationPresenter* notificationPresenter() const; | 146 virtual NotificationPresenter* notificationPresenter() const; |
| 147 #endif | 147 #endif |
| 148 | 148 |
| 149 #if USE(ACCELERATED_COMPOSITING) | 149 #if USE(ACCELERATED_COMPOSITING) |
| 150 // see ChromeClient.h | 150 // see ChromeClient.h |
| 151 // this is a hook for WebCore to tell us what we need to do with the Gra
phicsLayers | 151 // this is a hook for WebCore to tell us what we need to do with the Gra
phicsLayers |
| 152 virtual void attachRootGraphicsLayer(Frame*, GraphicsLayer*); | 152 virtual void attachRootGraphicsLayer(Frame*, GraphicsLayer*); |
| 153 virtual void setNeedsOneShotDrawingSynchronization(); | 153 virtual void setNeedsOneShotDrawingSynchronization(); |
| 154 virtual void scheduleCompositingLayerSync(); | 154 virtual void scheduleCompositingLayerSync(); |
| 155 virtual bool allowsAcceleratedCompositing() const; | 155 virtual CompositingTriggerFlags allowedCompositingTriggers() const; |
| 156 #endif | 156 #endif |
| 157 | 157 |
| 158 #if ENABLE(TILED_BACKING_STORE) | 158 #if ENABLE(TILED_BACKING_STORE) |
| 159 virtual IntRect visibleRectForTiledBackingStore() const; | 159 virtual IntRect visibleRectForTiledBackingStore() const; |
| 160 #endif | 160 #endif |
| 161 | 161 |
| 162 #if ENABLE(TOUCH_EVENTS) | 162 #if ENABLE(TOUCH_EVENTS) |
| 163 virtual void needTouchEvents(bool) { } | 163 virtual void needTouchEvents(bool) { } |
| 164 #endif | 164 #endif |
| 165 | 165 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 196 bool menuBarVisible; | 196 bool menuBarVisible; |
| 197 QEventLoop* m_eventLoop; | 197 QEventLoop* m_eventLoop; |
| 198 | 198 |
| 199 static bool dumpVisitedLinksCallbacks; | 199 static bool dumpVisitedLinksCallbacks; |
| 200 | 200 |
| 201 mutable QtPlatformPlugin m_platformPlugin; | 201 mutable QtPlatformPlugin m_platformPlugin; |
| 202 }; | 202 }; |
| 203 } | 203 } |
| 204 | 204 |
| 205 #endif | 205 #endif |
| OLD | NEW |