| 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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 bool haveScrollEventHandlers() const override; | 117 bool haveScrollEventHandlers() const override; |
| 118 void setTouchAction(TouchAction) override; | 118 void setTouchAction(TouchAction) override; |
| 119 | 119 |
| 120 GraphicsLayerFactory* graphicsLayerFactory() const override; | 120 GraphicsLayerFactory* graphicsLayerFactory() const override; |
| 121 | 121 |
| 122 // Pass 0 as the GraphicsLayer to detatch the root layer. | 122 // Pass 0 as the GraphicsLayer to detatch the root layer. |
| 123 void attachRootGraphicsLayer(GraphicsLayer*, LocalFrame* localRoot) override
; | 123 void attachRootGraphicsLayer(GraphicsLayer*, LocalFrame* localRoot) override
; |
| 124 | 124 |
| 125 void didPaint(const PaintArtifact&) override; | 125 void didPaint(const PaintArtifact&) override; |
| 126 | 126 |
| 127 void attachCompositorAnimationTimeline(WebCompositorAnimationTimeline*, Loca
lFrame* localRoot) override; | 127 void attachCompositorAnimationTimeline(CompositorAnimationTimeline*, LocalFr
ame* localRoot) override; |
| 128 void detachCompositorAnimationTimeline(WebCompositorAnimationTimeline*, Loca
lFrame* localRoot) override; | 128 void detachCompositorAnimationTimeline(CompositorAnimationTimeline*, LocalFr
ame* localRoot) override; |
| 129 | 129 |
| 130 void enterFullScreenForElement(Element*) override; | 130 void enterFullScreenForElement(Element*) override; |
| 131 void exitFullScreenForElement(Element*) override; | 131 void exitFullScreenForElement(Element*) override; |
| 132 | 132 |
| 133 void clearCompositedSelection() override; | 133 void clearCompositedSelection() override; |
| 134 void updateCompositedSelection(const CompositedSelection&) override; | 134 void updateCompositedSelection(const CompositedSelection&) override; |
| 135 | 135 |
| 136 // ChromeClient methods: | 136 // ChromeClient methods: |
| 137 void postAccessibilityNotification(AXObject*, AXObjectCache::AXNotification)
override; | 137 void postAccessibilityNotification(AXObject*, AXObjectCache::AXNotification)
override; |
| 138 String acceptLanguages() override; | 138 String acceptLanguages() override; |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 Cursor m_lastSetMouseCursorForTesting; | 195 Cursor m_lastSetMouseCursorForTesting; |
| 196 bool m_cursorOverridden; | 196 bool m_cursorOverridden; |
| 197 bool m_didRequestNonEmptyToolTip; | 197 bool m_didRequestNonEmptyToolTip; |
| 198 }; | 198 }; |
| 199 | 199 |
| 200 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient
Impl(), client.isChromeClientImpl()); | 200 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient
Impl(), client.isChromeClientImpl()); |
| 201 | 201 |
| 202 } // namespace blink | 202 } // namespace blink |
| 203 | 203 |
| 204 #endif | 204 #endif |
| OLD | NEW |