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 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
148 DateTimeChooser* openDateTimeChooser(DateTimeChooserClient*, const DateTimeC hooserParameters&) override; | 148 DateTimeChooser* openDateTimeChooser(DateTimeChooserClient*, const DateTimeC hooserParameters&) override; |
149 void openTextDataListChooser(HTMLInputElement&) override; | 149 void openTextDataListChooser(HTMLInputElement&) override; |
150 | 150 |
151 void openFileChooser(LocalFrame*, PassRefPtr<FileChooser>) override; | 151 void openFileChooser(LocalFrame*, PassRefPtr<FileChooser>) override; |
152 | 152 |
153 void setCursor(const Cursor&, LocalFrame* localRoot) override {} | 153 void setCursor(const Cursor&, LocalFrame* localRoot) override {} |
154 Cursor lastSetCursorForTesting() const override { return pointerCursor(); } | 154 Cursor lastSetCursorForTesting() const override { return pointerCursor(); } |
155 | 155 |
156 void attachRootGraphicsLayer(GraphicsLayer*, LocalFrame* localRoot) override {} | 156 void attachRootGraphicsLayer(GraphicsLayer*, LocalFrame* localRoot) override {} |
157 | 157 |
158 void setHaveTouchEventListeners(bool) override {} | |
tdresser
2016/04/13 16:52:35
setHas
dtapuska
2016/04/13 18:00:15
Done.
| |
158 void setEventListenerProperties(WebEventListenerClass, WebEventListenerPrope rties) override {} | 159 void setEventListenerProperties(WebEventListenerClass, WebEventListenerPrope rties) override {} |
159 WebEventListenerProperties eventListenerProperties(WebEventListenerClass) co nst override { return WebEventListenerProperties::Nothing; } | 160 WebEventListenerProperties eventListenerProperties(WebEventListenerClass) co nst override { return WebEventListenerProperties::Nothing; } |
160 void setHaveScrollEventHandlers(bool) override {} | 161 void setHaveScrollEventHandlers(bool) override {} |
161 bool haveScrollEventHandlers() const override { return false; } | 162 bool haveScrollEventHandlers() const override { return false; } |
162 | 163 |
163 void setTouchAction(TouchAction) override {} | 164 void setTouchAction(TouchAction) override {} |
164 | 165 |
165 void didAssociateFormControls(const HeapVector<Member<Element>>&, LocalFrame *) override {} | 166 void didAssociateFormControls(const HeapVector<Member<Element>>&, LocalFrame *) override {} |
166 | 167 |
167 void annotatedRegionsChanged() override {} | 168 void annotatedRegionsChanged() override {} |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
333 ~EmptyDragClient() override {} | 334 ~EmptyDragClient() override {} |
334 DragDestinationAction actionMaskForDrag(DragData*) override { return DragDes tinationActionNone; } | 335 DragDestinationAction actionMaskForDrag(DragData*) override { return DragDes tinationActionNone; } |
335 void startDrag(DragImage*, const IntPoint&, const IntPoint&, DataTransfer*, LocalFrame*, bool) override {} | 336 void startDrag(DragImage*, const IntPoint&, const IntPoint&, DataTransfer*, LocalFrame*, bool) override {} |
336 }; | 337 }; |
337 | 338 |
338 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); | 339 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); |
339 | 340 |
340 } // namespace blink | 341 } // namespace blink |
341 | 342 |
342 #endif // EmptyClients_h | 343 #endif // EmptyClients_h |
OLD | NEW |