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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 void openFileChooser(LocalFrame*, PassRefPtr<FileChooser>) override; | 111 void openFileChooser(LocalFrame*, PassRefPtr<FileChooser>) override; |
112 void enumerateChosenDirectory(FileChooser*) override; | 112 void enumerateChosenDirectory(FileChooser*) override; |
113 void setCursor(const Cursor&, LocalFrame* localRoot) override; | 113 void setCursor(const Cursor&, LocalFrame* localRoot) override; |
114 Cursor lastSetCursorForTesting() const override; | 114 Cursor lastSetCursorForTesting() const override; |
115 void setEventListenerProperties(WebEventListenerClass, WebEventListenerPrope
rties) override; | 115 void setEventListenerProperties(WebEventListenerClass, WebEventListenerPrope
rties) override; |
116 WebEventListenerProperties eventListenerProperties(WebEventListenerClass) co
nst override; | 116 WebEventListenerProperties eventListenerProperties(WebEventListenerClass) co
nst override; |
117 void setHaveScrollEventHandlers(bool hasEventHandlers) override; | 117 void setHaveScrollEventHandlers(bool hasEventHandlers) override; |
118 bool haveScrollEventHandlers() const override; | 118 bool haveScrollEventHandlers() const override; |
119 void setTouchAction(TouchAction) override; | 119 void setTouchAction(TouchAction) override; |
120 | 120 |
121 GraphicsLayerFactory* graphicsLayerFactory() const override; | |
122 | |
123 // Pass 0 as the GraphicsLayer to detatch the root layer. | 121 // Pass 0 as the GraphicsLayer to detatch the root layer. |
124 void attachRootGraphicsLayer(GraphicsLayer*, LocalFrame* localRoot) override
; | 122 void attachRootGraphicsLayer(GraphicsLayer*, LocalFrame* localRoot) override
; |
125 | 123 |
126 void didPaint(const PaintArtifact&) override; | 124 void didPaint(const PaintArtifact&) override; |
127 | 125 |
128 void attachCompositorAnimationTimeline(CompositorAnimationTimeline*, LocalFr
ame* localRoot) override; | 126 void attachCompositorAnimationTimeline(CompositorAnimationTimeline*, LocalFr
ame* localRoot) override; |
129 void detachCompositorAnimationTimeline(CompositorAnimationTimeline*, LocalFr
ame* localRoot) override; | 127 void detachCompositorAnimationTimeline(CompositorAnimationTimeline*, LocalFr
ame* localRoot) override; |
130 | 128 |
131 void enterFullScreenForElement(Element*) override; | 129 void enterFullScreenForElement(Element*) override; |
132 void exitFullScreenForElement(Element*) override; | 130 void exitFullScreenForElement(Element*) override; |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
196 Cursor m_lastSetMouseCursorForTesting; | 194 Cursor m_lastSetMouseCursorForTesting; |
197 bool m_cursorOverridden; | 195 bool m_cursorOverridden; |
198 bool m_didRequestNonEmptyToolTip; | 196 bool m_didRequestNonEmptyToolTip; |
199 }; | 197 }; |
200 | 198 |
201 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient
Impl(), client.isChromeClientImpl()); | 199 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient
Impl(), client.isChromeClientImpl()); |
202 | 200 |
203 } // namespace blink | 201 } // namespace blink |
204 | 202 |
205 #endif | 203 #endif |
OLD | NEW |