OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006 Eric Seidel (eric@webkit.org) | 2 * Copyright (C) 2006 Eric Seidel (eric@webkit.org) |
3 * Copyright (C) 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. | 3 * Copyright (C) 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. |
4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). | 4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). |
5 * Copyright (C) 2012 Samsung Electronics. All rights reserved. | 5 * Copyright (C) 2012 Samsung Electronics. All rights reserved. |
6 * | 6 * |
7 * Redistribution and use in source and binary forms, with or without | 7 * Redistribution and use in source and binary forms, with or without |
8 * modification, are permitted provided that the following conditions | 8 * modification, are permitted provided that the following conditions |
9 * are met: | 9 * are met: |
10 * 1. Redistributions of source code must retain the above copyright | 10 * 1. Redistributions of source code must retain the above copyright |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
193 void openTextDataListChooser(HTMLInputElement&) override; | 193 void openTextDataListChooser(HTMLInputElement&) override; |
194 | 194 |
195 void openFileChooser(LocalFrame*, PassRefPtr<FileChooser>) override; | 195 void openFileChooser(LocalFrame*, PassRefPtr<FileChooser>) override; |
196 | 196 |
197 void setCursor(const Cursor&, LocalFrame* localRoot) override {} | 197 void setCursor(const Cursor&, LocalFrame* localRoot) override {} |
198 Cursor lastSetCursorForTesting() const override { return pointerCursor(); } | 198 Cursor lastSetCursorForTesting() const override { return pointerCursor(); } |
199 | 199 |
200 void attachRootGraphicsLayer(GraphicsLayer*, LocalFrame* localRoot) override; | 200 void attachRootGraphicsLayer(GraphicsLayer*, LocalFrame* localRoot) override; |
201 void attachRootLayer(WebLayer*, LocalFrame* localRoot) override {} | 201 void attachRootLayer(WebLayer*, LocalFrame* localRoot) override {} |
202 | 202 |
203 void setEventListenerProperties(WebEventListenerClass, | 203 void setEventListenerProperties(LocalFrame*, |
| 204 WebEventListenerClass, |
204 WebEventListenerProperties) override {} | 205 WebEventListenerProperties) override {} |
205 WebEventListenerProperties eventListenerProperties( | 206 WebEventListenerProperties eventListenerProperties( |
206 WebEventListenerClass) const override { | 207 LocalFrame*, |
| 208 WebEventListenerClass eventClass) const override { |
207 return WebEventListenerProperties::Nothing; | 209 return WebEventListenerProperties::Nothing; |
208 } | 210 } |
209 void setHasScrollEventHandlers(bool) override {} | 211 void updateTouchRectsForSubframeIfNecessary(LocalFrame* frame) override {} |
210 bool hasScrollEventHandlers() const override { return false; } | 212 void setHasScrollEventHandlers(LocalFrame*, bool) override {} |
211 | 213 |
212 void setTouchAction(LocalFrame*, TouchAction) override {} | 214 void setTouchAction(LocalFrame*, TouchAction) override {} |
213 | 215 |
214 void didAssociateFormControlsAfterLoad(LocalFrame*) override {} | 216 void didAssociateFormControlsAfterLoad(LocalFrame*) override {} |
215 | 217 |
216 void annotatedRegionsChanged() override {} | 218 void annotatedRegionsChanged() override {} |
217 String acceptLanguages() override; | 219 String acceptLanguages() override; |
218 | 220 |
219 CompositorProxyClient* createCompositorProxyClient(LocalFrame*) override { | 221 CompositorProxyClient* createCompositorProxyClient(LocalFrame*) override { |
220 return nullptr; | 222 return nullptr; |
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
457 Frame* nextSibling() const override { return nullptr; } | 459 Frame* nextSibling() const override { return nullptr; } |
458 Frame* firstChild() const override { return nullptr; } | 460 Frame* firstChild() const override { return nullptr; } |
459 void frameFocused() const override {} | 461 void frameFocused() const override {} |
460 }; | 462 }; |
461 | 463 |
462 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); | 464 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); |
463 | 465 |
464 } // namespace blink | 466 } // namespace blink |
465 | 467 |
466 #endif // EmptyClients_h | 468 #endif // EmptyClients_h |
OLD | NEW |