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