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 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
203 void attachRootLayer(WebLayer*, LocalFrame* localRoot) override {} | 203 void attachRootLayer(WebLayer*, LocalFrame* localRoot) override {} |
204 | 204 |
205 void setEventListenerProperties(LocalFrame*, | 205 void setEventListenerProperties(LocalFrame*, |
206 WebEventListenerClass, | 206 WebEventListenerClass, |
207 WebEventListenerProperties) override {} | 207 WebEventListenerProperties) override {} |
208 WebEventListenerProperties eventListenerProperties( | 208 WebEventListenerProperties eventListenerProperties( |
209 LocalFrame*, | 209 LocalFrame*, |
210 WebEventListenerClass eventClass) const override { | 210 WebEventListenerClass eventClass) const override { |
211 return WebEventListenerProperties::Nothing; | 211 return WebEventListenerProperties::Nothing; |
212 } | 212 } |
213 void updateTouchRectsForSubframeIfNecessary(LocalFrame* frame) override {} | 213 void updateEventRectsForSubframeIfNecessary(LocalFrame* frame) override {} |
214 void setHasScrollEventHandlers(LocalFrame*, bool) override {} | 214 void setHasScrollEventHandlers(LocalFrame*, bool) override {} |
215 | 215 |
216 void setTouchAction(LocalFrame*, TouchAction) override {} | 216 void setTouchAction(LocalFrame*, TouchAction) override {} |
217 | 217 |
218 void didAssociateFormControlsAfterLoad(LocalFrame*) override {} | 218 void didAssociateFormControlsAfterLoad(LocalFrame*) override {} |
219 | 219 |
220 void annotatedRegionsChanged() override {} | 220 void annotatedRegionsChanged() override {} |
221 String acceptLanguages() override; | 221 String acceptLanguages() override; |
222 | 222 |
223 CompositorWorkerProxyClient* createCompositorWorkerProxyClient( | 223 CompositorWorkerProxyClient* createCompositorWorkerProxyClient( |
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
467 Frame* nextSibling() const override { return nullptr; } | 467 Frame* nextSibling() const override { return nullptr; } |
468 Frame* firstChild() const override { return nullptr; } | 468 Frame* firstChild() const override { return nullptr; } |
469 void frameFocused() const override {} | 469 void frameFocused() const override {} |
470 }; | 470 }; |
471 | 471 |
472 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); | 472 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); |
473 | 473 |
474 } // namespace blink | 474 } // namespace blink |
475 | 475 |
476 #endif // EmptyClients_h | 476 #endif // EmptyClients_h |
OLD | NEW |