| 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 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 | 152 |
| 153 // Pass 0 as the GraphicsLayer to detatch the root layer. | 153 // Pass 0 as the GraphicsLayer to detatch the root layer. |
| 154 virtual void attachRootGraphicsLayer(WebCore::Frame*, WebCore::GraphicsLayer
*); | 154 virtual void attachRootGraphicsLayer(WebCore::Frame*, WebCore::GraphicsLayer
*); |
| 155 | 155 |
| 156 // Sets a flag to specify that the view needs to be updated, so we need | 156 // Sets a flag to specify that the view needs to be updated, so we need |
| 157 // to do an eager layout before the drawing. | 157 // to do an eager layout before the drawing. |
| 158 virtual void scheduleCompositingLayerFlush(); | 158 virtual void scheduleCompositingLayerFlush(); |
| 159 | 159 |
| 160 virtual CompositingTriggerFlags allowedCompositingTriggers() const; | 160 virtual CompositingTriggerFlags allowedCompositingTriggers() const; |
| 161 | 161 |
| 162 virtual void enterFullscreenForNode(WebCore::Node*); | |
| 163 virtual void exitFullscreenForNode(WebCore::Node*); | |
| 164 | |
| 165 virtual void enterFullScreenForElement(WebCore::Element*); | 162 virtual void enterFullScreenForElement(WebCore::Element*); |
| 166 virtual void exitFullScreenForElement(WebCore::Element*); | 163 virtual void exitFullScreenForElement(WebCore::Element*); |
| 167 | 164 |
| 168 // ChromeClient methods: | 165 // ChromeClient methods: |
| 169 virtual void popupOpened(WebCore::PopupContainer* popupContainer, | 166 virtual void popupOpened(WebCore::PopupContainer* popupContainer, |
| 170 const WebCore::IntRect& bounds, | 167 const WebCore::IntRect& bounds, |
| 171 bool handleExternally); | 168 bool handleExternally); |
| 172 virtual void popupClosed(WebCore::PopupContainer* popupContainer); | 169 virtual void popupClosed(WebCore::PopupContainer* popupContainer); |
| 173 virtual void postAccessibilityNotification(WebCore::AccessibilityObject*, We
bCore::AXObjectCache::AXNotification); | 170 virtual void postAccessibilityNotification(WebCore::AccessibilityObject*, We
bCore::AXObjectCache::AXNotification); |
| 174 | 171 |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 private: | 229 private: |
| 233 explicit NavigatorContentUtilsClientImpl(WebViewImpl*); | 230 explicit NavigatorContentUtilsClientImpl(WebViewImpl*); |
| 234 | 231 |
| 235 WebViewImpl* m_webView; | 232 WebViewImpl* m_webView; |
| 236 }; | 233 }; |
| 237 #endif | 234 #endif |
| 238 | 235 |
| 239 } // namespace WebKit | 236 } // namespace WebKit |
| 240 | 237 |
| 241 #endif | 238 #endif |
| OLD | NEW |