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 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
211 void updateTouchRectsForSubframeIfNecessary(LocalFrame* frame) override {} | 211 void updateTouchRectsForSubframeIfNecessary(LocalFrame* frame) override {} |
212 void setHasScrollEventHandlers(LocalFrame*, bool) override {} | 212 void setHasScrollEventHandlers(LocalFrame*, bool) override {} |
213 | 213 |
214 void setTouchAction(LocalFrame*, TouchAction) override {} | 214 void setTouchAction(LocalFrame*, TouchAction) override {} |
215 | 215 |
216 void didAssociateFormControlsAfterLoad(LocalFrame*) override {} | 216 void didAssociateFormControlsAfterLoad(LocalFrame*) override {} |
217 | 217 |
218 void annotatedRegionsChanged() override {} | 218 void annotatedRegionsChanged() override {} |
219 String acceptLanguages() override; | 219 String acceptLanguages() override; |
220 | 220 |
| 221 void handlePotentialTextSuggestionTap() override {} |
| 222 |
221 CompositorProxyClient* createCompositorProxyClient(LocalFrame*) override { | 223 CompositorProxyClient* createCompositorProxyClient(LocalFrame*) override { |
222 return nullptr; | 224 return nullptr; |
223 } | 225 } |
224 | 226 |
225 void registerPopupOpeningObserver(PopupOpeningObserver*) override {} | 227 void registerPopupOpeningObserver(PopupOpeningObserver*) override {} |
226 void unregisterPopupOpeningObserver(PopupOpeningObserver*) override {} | 228 void unregisterPopupOpeningObserver(PopupOpeningObserver*) override {} |
227 | 229 |
228 std::unique_ptr<WebFrameScheduler> createFrameScheduler( | 230 std::unique_ptr<WebFrameScheduler> createFrameScheduler( |
229 BlameContext*) override; | 231 BlameContext*) override; |
230 }; | 232 }; |
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
459 Frame* nextSibling() const override { return nullptr; } | 461 Frame* nextSibling() const override { return nullptr; } |
460 Frame* firstChild() const override { return nullptr; } | 462 Frame* firstChild() const override { return nullptr; } |
461 void frameFocused() const override {} | 463 void frameFocused() const override {} |
462 }; | 464 }; |
463 | 465 |
464 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); | 466 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); |
465 | 467 |
466 } // namespace blink | 468 } // namespace blink |
467 | 469 |
468 #endif // EmptyClients_h | 470 #endif // EmptyClients_h |
OLD | NEW |