| 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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 void printInternal(LocalFrame*) override { } | 135 void printInternal(LocalFrame*) override { } |
| 136 | 136 |
| 137 void enumerateChosenDirectory(FileChooser*) override { } | 137 void enumerateChosenDirectory(FileChooser*) override { } |
| 138 | 138 |
| 139 PassOwnPtrWillBeRawPtr<ColorChooser> createColorChooser(LocalFrame*, ColorCh
ooserClient*, const Color&) override; | 139 PassOwnPtrWillBeRawPtr<ColorChooser> createColorChooser(LocalFrame*, ColorCh
ooserClient*, const Color&) override; |
| 140 PassRefPtr<DateTimeChooser> openDateTimeChooser(DateTimeChooserClient*, cons
t DateTimeChooserParameters&) override; | 140 PassRefPtr<DateTimeChooser> openDateTimeChooser(DateTimeChooserClient*, cons
t DateTimeChooserParameters&) override; |
| 141 void openTextDataListChooser(HTMLInputElement&) override; | 141 void openTextDataListChooser(HTMLInputElement&) override; |
| 142 | 142 |
| 143 void runOpenPanel(LocalFrame*, PassRefPtr<FileChooser>) override; | 143 void runOpenPanel(LocalFrame*, PassRefPtr<FileChooser>) override; |
| 144 | 144 |
| 145 void setCursorInternal(const Cursor&) override { } | 145 void setCursor(const Cursor&) override { } |
| 146 Cursor lastSetCursorForTesting() const override { return pointerCursor(); } |
| 146 | 147 |
| 147 void attachRootGraphicsLayer(GraphicsLayer*, LocalFrame* localRoot) override
{ } | 148 void attachRootGraphicsLayer(GraphicsLayer*, LocalFrame* localRoot) override
{ } |
| 148 | 149 |
| 149 void needTouchEvents(bool) override { } | 150 void needTouchEvents(bool) override { } |
| 150 void setTouchAction(TouchAction) override { }; | 151 void setTouchAction(TouchAction) override { }; |
| 151 | 152 |
| 152 void didAssociateFormControls(const WillBeHeapVector<RefPtrWillBeMember<Elem
ent>>&, LocalFrame*) override { } | 153 void didAssociateFormControls(const WillBeHeapVector<RefPtrWillBeMember<Elem
ent>>&, LocalFrame*) override { } |
| 153 | 154 |
| 154 void annotatedRegionsChanged() override { } | 155 void annotatedRegionsChanged() override { } |
| 155 String acceptLanguages() override; | 156 String acceptLanguages() override; |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 312 virtual ~EmptyDragClient() {} | 313 virtual ~EmptyDragClient() {} |
| 313 virtual DragDestinationAction actionMaskForDrag(DragData*) override { return
DragDestinationActionNone; } | 314 virtual DragDestinationAction actionMaskForDrag(DragData*) override { return
DragDestinationActionNone; } |
| 314 virtual void startDrag(DragImage*, const IntPoint&, const IntPoint&, DataTra
nsfer*, LocalFrame*, bool) override { } | 315 virtual void startDrag(DragImage*, const IntPoint&, const IntPoint&, DataTra
nsfer*, LocalFrame*, bool) override { } |
| 315 }; | 316 }; |
| 316 | 317 |
| 317 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); | 318 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); |
| 318 | 319 |
| 319 } // namespace blink | 320 } // namespace blink |
| 320 | 321 |
| 321 #endif // EmptyClients_h | 322 #endif // EmptyClients_h |
| OLD | NEW |