| 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(LocalFrame*, | 203 void setEventListenerProperties(WebEventListenerClass, |
| 204 WebEventListenerClass, | |
| 205 WebEventListenerProperties) override {} | 204 WebEventListenerProperties) override {} |
| 206 WebEventListenerProperties eventListenerProperties( | 205 WebEventListenerProperties eventListenerProperties( |
| 207 LocalFrame*, | 206 WebEventListenerClass) const override { |
| 208 WebEventListenerClass eventClass) const override { | |
| 209 return WebEventListenerProperties::Nothing; | 207 return WebEventListenerProperties::Nothing; |
| 210 } | 208 } |
| 211 void updateTouchRectsForSubframeIfNecessary(LocalFrame* frame) override {} | 209 void setHasScrollEventHandlers(bool) override {} |
| 212 void setHasScrollEventHandlers(LocalFrame*, bool) override {} | 210 bool hasScrollEventHandlers() const override { return false; } |
| 213 | 211 |
| 214 void setTouchAction(LocalFrame*, TouchAction) override {} | 212 void setTouchAction(LocalFrame*, TouchAction) override {} |
| 215 | 213 |
| 216 void didAssociateFormControlsAfterLoad(LocalFrame*) override {} | 214 void didAssociateFormControlsAfterLoad(LocalFrame*) override {} |
| 217 | 215 |
| 218 void annotatedRegionsChanged() override {} | 216 void annotatedRegionsChanged() override {} |
| 219 String acceptLanguages() override; | 217 String acceptLanguages() override; |
| 220 | 218 |
| 221 CompositorProxyClient* createCompositorProxyClient(LocalFrame*) override { | 219 CompositorProxyClient* createCompositorProxyClient(LocalFrame*) override { |
| 222 return nullptr; | 220 return nullptr; |
| (...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 459 Frame* nextSibling() const override { return nullptr; } | 457 Frame* nextSibling() const override { return nullptr; } |
| 460 Frame* firstChild() const override { return nullptr; } | 458 Frame* firstChild() const override { return nullptr; } |
| 461 void frameFocused() const override {} | 459 void frameFocused() const override {} |
| 462 }; | 460 }; |
| 463 | 461 |
| 464 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); | 462 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); |
| 465 | 463 |
| 466 } // namespace blink | 464 } // namespace blink |
| 467 | 465 |
| 468 #endif // EmptyClients_h | 466 #endif // EmptyClients_h |
| OLD | NEW |