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