| 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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 void setTouchAction(TouchAction) override; | 126 void setTouchAction(TouchAction) override; |
| 127 | 127 |
| 128 // Pass 0 as the GraphicsLayer to detatch the root layer. | 128 // Pass 0 as the GraphicsLayer to detatch the root layer. |
| 129 void attachRootGraphicsLayer(GraphicsLayer*, LocalFrame* localRoot) override
; | 129 void attachRootGraphicsLayer(GraphicsLayer*, LocalFrame* localRoot) override
; |
| 130 | 130 |
| 131 void didPaint(const PaintArtifact&) override; | 131 void didPaint(const PaintArtifact&) override; |
| 132 | 132 |
| 133 void attachCompositorAnimationTimeline(CompositorAnimationTimeline*, LocalFr
ame*) override; | 133 void attachCompositorAnimationTimeline(CompositorAnimationTimeline*, LocalFr
ame*) override; |
| 134 void detachCompositorAnimationTimeline(CompositorAnimationTimeline*, LocalFr
ame*) override; | 134 void detachCompositorAnimationTimeline(CompositorAnimationTimeline*, LocalFr
ame*) override; |
| 135 | 135 |
| 136 void enterFullScreenForElement(Element*) override; | 136 void enterFullscreenForElement(Element*) override; |
| 137 void exitFullScreenForElement(Element*) override; | 137 void exitFullscreenForElement(Element*) override; |
| 138 | 138 |
| 139 void clearCompositedSelection(LocalFrame*) override; | 139 void clearCompositedSelection(LocalFrame*) override; |
| 140 void updateCompositedSelection(LocalFrame*, const CompositedSelection&) over
ride; | 140 void updateCompositedSelection(LocalFrame*, const CompositedSelection&) over
ride; |
| 141 | 141 |
| 142 // ChromeClient methods: | 142 // ChromeClient methods: |
| 143 void postAccessibilityNotification(AXObject*, AXObjectCache::AXNotification)
override; | 143 void postAccessibilityNotification(AXObject*, AXObjectCache::AXNotification)
override; |
| 144 String acceptLanguages() override; | 144 String acceptLanguages() override; |
| 145 | 145 |
| 146 // ChromeClientImpl: | 146 // ChromeClientImpl: |
| 147 void setCursorForPlugin(const WebCursorInfo&, LocalFrame*); | 147 void setCursorForPlugin(const WebCursorInfo&, LocalFrame*); |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 Cursor m_lastSetMouseCursorForTesting; | 207 Cursor m_lastSetMouseCursorForTesting; |
| 208 bool m_cursorOverridden; | 208 bool m_cursorOverridden; |
| 209 bool m_didRequestNonEmptyToolTip; | 209 bool m_didRequestNonEmptyToolTip; |
| 210 }; | 210 }; |
| 211 | 211 |
| 212 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient
Impl(), client.isChromeClientImpl()); | 212 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient
Impl(), client.isChromeClientImpl()); |
| 213 | 213 |
| 214 } // namespace blink | 214 } // namespace blink |
| 215 | 215 |
| 216 #endif | 216 #endif |
| OLD | NEW |