| 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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 | 137 |
| 138 void showMouseOverURL(const HitTestResult&) override {} | 138 void showMouseOverURL(const HitTestResult&) override {} |
| 139 | 139 |
| 140 void setToolTip(const String&, TextDirection) override {} | 140 void setToolTip(const String&, TextDirection) override {} |
| 141 | 141 |
| 142 void printDelegate(LocalFrame*) override {} | 142 void printDelegate(LocalFrame*) override {} |
| 143 | 143 |
| 144 void enumerateChosenDirectory(FileChooser*) override {} | 144 void enumerateChosenDirectory(FileChooser*) override {} |
| 145 | 145 |
| 146 PassOwnPtrWillBeRawPtr<ColorChooser> openColorChooser(LocalFrame*, ColorChoo
serClient*, const Color&) override; | 146 PassOwnPtrWillBeRawPtr<ColorChooser> openColorChooser(LocalFrame*, ColorChoo
serClient*, const Color&) override; |
| 147 PassRefPtr<DateTimeChooser> openDateTimeChooser(DateTimeChooserClient*, cons
t DateTimeChooserParameters&) override; | 147 PassRefPtrWillBeRawPtr<DateTimeChooser> openDateTimeChooser(DateTimeChooserC
lient*, const DateTimeChooserParameters&) override; |
| 148 void openTextDataListChooser(HTMLInputElement&) override; | 148 void openTextDataListChooser(HTMLInputElement&) override; |
| 149 | 149 |
| 150 void openFileChooser(LocalFrame*, PassRefPtr<FileChooser>) override; | 150 void openFileChooser(LocalFrame*, PassRefPtr<FileChooser>) override; |
| 151 | 151 |
| 152 void setCursor(const Cursor&, LocalFrame* localRoot) override {} | 152 void setCursor(const Cursor&, LocalFrame* localRoot) override {} |
| 153 Cursor lastSetCursorForTesting() const override { return pointerCursor(); } | 153 Cursor lastSetCursorForTesting() const override { return pointerCursor(); } |
| 154 | 154 |
| 155 void attachRootGraphicsLayer(GraphicsLayer*, LocalFrame* localRoot) override
{} | 155 void attachRootGraphicsLayer(GraphicsLayer*, LocalFrame* localRoot) override
{} |
| 156 | 156 |
| 157 void needTouchEvents(bool) override {} | 157 void needTouchEvents(bool) override {} |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 329 ~EmptyDragClient() override {} | 329 ~EmptyDragClient() override {} |
| 330 DragDestinationAction actionMaskForDrag(DragData*) override { return DragDes
tinationActionNone; } | 330 DragDestinationAction actionMaskForDrag(DragData*) override { return DragDes
tinationActionNone; } |
| 331 void startDrag(DragImage*, const IntPoint&, const IntPoint&, DataTransfer*,
LocalFrame*, bool) override {} | 331 void startDrag(DragImage*, const IntPoint&, const IntPoint&, DataTransfer*,
LocalFrame*, bool) override {} |
| 332 }; | 332 }; |
| 333 | 333 |
| 334 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); | 334 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); |
| 335 | 335 |
| 336 } // namespace blink | 336 } // namespace blink |
| 337 | 337 |
| 338 #endif // EmptyClients_h | 338 #endif // EmptyClients_h |
| OLD | NEW |