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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 void setCursor(const Cursor&) override; | 112 void setCursor(const Cursor&) override; |
113 Cursor lastSetCursorForTesting() const override; | 113 Cursor lastSetCursorForTesting() const override; |
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 setCompositedDisplayList(PassOwnPtr<CompositedDisplayList>) override; |
| 123 CompositedDisplayList* compositedDisplayListForTesting() override; |
| 124 |
122 void attachCompositorAnimationTimeline(WebCompositorAnimationTimeline*, Loca
lFrame* localRoot) override; | 125 void attachCompositorAnimationTimeline(WebCompositorAnimationTimeline*, Loca
lFrame* localRoot) override; |
123 void detachCompositorAnimationTimeline(WebCompositorAnimationTimeline*, Loca
lFrame* localRoot) override; | 126 void detachCompositorAnimationTimeline(WebCompositorAnimationTimeline*, Loca
lFrame* localRoot) override; |
124 | 127 |
125 void enterFullScreenForElement(Element*) override; | 128 void enterFullScreenForElement(Element*) override; |
126 void exitFullScreenForElement(Element*) override; | 129 void exitFullScreenForElement(Element*) override; |
127 | 130 |
128 void clearCompositedSelection() override; | 131 void clearCompositedSelection() override; |
129 void updateCompositedSelection(const CompositedSelection&) override; | 132 void updateCompositedSelection(const CompositedSelection&) override; |
130 | 133 |
131 // ChromeClient methods: | 134 // ChromeClient methods: |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 WindowFeatures m_windowFeatures; | 186 WindowFeatures m_windowFeatures; |
184 Vector<PopupOpeningObserver*> m_popupOpeningObservers; | 187 Vector<PopupOpeningObserver*> m_popupOpeningObservers; |
185 Cursor m_lastSetMouseCursorForTesting; | 188 Cursor m_lastSetMouseCursorForTesting; |
186 }; | 189 }; |
187 | 190 |
188 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient
Impl(), client.isChromeClientImpl()); | 191 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient
Impl(), client.isChromeClientImpl()); |
189 | 192 |
190 } // namespace blink | 193 } // namespace blink |
191 | 194 |
192 #endif | 195 #endif |
OLD | NEW |