| 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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 void printDelegate(LocalFrame*) override {} | 141 void printDelegate(LocalFrame*) override {} |
| 142 | 142 |
| 143 void enumerateChosenDirectory(FileChooser*) override {} | 143 void enumerateChosenDirectory(FileChooser*) override {} |
| 144 | 144 |
| 145 PassOwnPtrWillBeRawPtr<ColorChooser> openColorChooser(LocalFrame*, ColorChoo
serClient*, const Color&) override; | 145 PassOwnPtrWillBeRawPtr<ColorChooser> openColorChooser(LocalFrame*, ColorChoo
serClient*, const Color&) override; |
| 146 PassRefPtr<DateTimeChooser> openDateTimeChooser(DateTimeChooserClient*, cons
t DateTimeChooserParameters&) override; | 146 PassRefPtr<DateTimeChooser> openDateTimeChooser(DateTimeChooserClient*, cons
t DateTimeChooserParameters&) override; |
| 147 void openTextDataListChooser(HTMLInputElement&) override; | 147 void openTextDataListChooser(HTMLInputElement&) override; |
| 148 | 148 |
| 149 void openFileChooser(LocalFrame*, PassRefPtr<FileChooser>) override; | 149 void openFileChooser(LocalFrame*, PassRefPtr<FileChooser>) override; |
| 150 | 150 |
| 151 void setCursor(const Cursor&) override {} | 151 void setCursor(const Cursor&, LocalFrame*) override {} |
| 152 Cursor lastSetCursorForTesting() const override { return pointerCursor(); } | 152 Cursor lastSetCursorForTesting() const override { return pointerCursor(); } |
| 153 | 153 |
| 154 void attachRootGraphicsLayer(GraphicsLayer*, LocalFrame* localRoot) override
{} | 154 void attachRootGraphicsLayer(GraphicsLayer*, LocalFrame* localRoot) override
{} |
| 155 | 155 |
| 156 void needTouchEvents(bool) override {} | 156 void needTouchEvents(bool) override {} |
| 157 void setTouchAction(TouchAction) override {} | 157 void setTouchAction(TouchAction) override {} |
| 158 | 158 |
| 159 void didAssociateFormControls(const WillBeHeapVector<RefPtrWillBeMember<Elem
ent>>&, LocalFrame*) override {} | 159 void didAssociateFormControls(const WillBeHeapVector<RefPtrWillBeMember<Elem
ent>>&, LocalFrame*) override {} |
| 160 | 160 |
| 161 void annotatedRegionsChanged() override {} | 161 void annotatedRegionsChanged() override {} |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 325 ~EmptyDragClient() override {} | 325 ~EmptyDragClient() override {} |
| 326 DragDestinationAction actionMaskForDrag(DragData*) override { return DragDes
tinationActionNone; } | 326 DragDestinationAction actionMaskForDrag(DragData*) override { return DragDes
tinationActionNone; } |
| 327 void startDrag(DragImage*, const IntPoint&, const IntPoint&, DataTransfer*,
LocalFrame*, bool) override {} | 327 void startDrag(DragImage*, const IntPoint&, const IntPoint&, DataTransfer*,
LocalFrame*, bool) override {} |
| 328 }; | 328 }; |
| 329 | 329 |
| 330 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); | 330 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); |
| 331 | 331 |
| 332 } // namespace blink | 332 } // namespace blink |
| 333 | 333 |
| 334 #endif // EmptyClients_h | 334 #endif // EmptyClients_h |
| OLD | NEW |