| 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 | 141 |
| 142 virtual void runOpenPanel(LocalFrame*, PassRefPtr<FileChooser>) override; | 142 virtual void runOpenPanel(LocalFrame*, PassRefPtr<FileChooser>) override; |
| 143 | 143 |
| 144 virtual void setCursor(const Cursor&) override { } | 144 virtual void setCursor(const Cursor&) override { } |
| 145 | 145 |
| 146 virtual void attachRootGraphicsLayer(GraphicsLayer*, LocalFrame* localRoot)
override { } | 146 virtual void attachRootGraphicsLayer(GraphicsLayer*, LocalFrame* localRoot)
override { } |
| 147 | 147 |
| 148 virtual void needTouchEvents(bool) override { } | 148 virtual void needTouchEvents(bool) override { } |
| 149 virtual void setTouchAction(TouchAction touchAction) override { }; | 149 virtual void setTouchAction(TouchAction touchAction) override { }; |
| 150 | 150 |
| 151 virtual void didAssociateFormControls(const WillBeHeapVector<RefPtrWillBeMem
ber<Element> >&, LocalFrame* frame) override { } | 151 virtual void didAssociateFormControls(const WillBeHeapVector<RefPtrWillBeMem
ber<Element>>&, LocalFrame* frame) override { } |
| 152 | 152 |
| 153 virtual void annotatedRegionsChanged() override { } | 153 virtual void annotatedRegionsChanged() override { } |
| 154 virtual bool paintCustomOverhangArea(GraphicsContext*, const IntRect&, const
IntRect&, const IntRect&) override { return false; } | 154 virtual bool paintCustomOverhangArea(GraphicsContext*, const IntRect&, const
IntRect&, const IntRect&) override { return false; } |
| 155 virtual String acceptLanguages() override; | 155 virtual String acceptLanguages() override; |
| 156 }; | 156 }; |
| 157 | 157 |
| 158 class EmptyFrameLoaderClient : public FrameLoaderClient { | 158 class EmptyFrameLoaderClient : public FrameLoaderClient { |
| 159 WTF_MAKE_NONCOPYABLE(EmptyFrameLoaderClient); WTF_MAKE_FAST_ALLOCATED; | 159 WTF_MAKE_NONCOPYABLE(EmptyFrameLoaderClient); WTF_MAKE_FAST_ALLOCATED; |
| 160 public: | 160 public: |
| 161 EmptyFrameLoaderClient() { } | 161 EmptyFrameLoaderClient() { } |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 306 virtual ~EmptyDragClient() {} | 306 virtual ~EmptyDragClient() {} |
| 307 virtual DragDestinationAction actionMaskForDrag(DragData*) override { return
DragDestinationActionNone; } | 307 virtual DragDestinationAction actionMaskForDrag(DragData*) override { return
DragDestinationActionNone; } |
| 308 virtual void startDrag(DragImage*, const IntPoint&, const IntPoint&, DataTra
nsfer*, LocalFrame*, bool) override { } | 308 virtual void startDrag(DragImage*, const IntPoint&, const IntPoint&, DataTra
nsfer*, LocalFrame*, bool) override { } |
| 309 }; | 309 }; |
| 310 | 310 |
| 311 void fillWithEmptyClients(Page::PageClients&); | 311 void fillWithEmptyClients(Page::PageClients&); |
| 312 | 312 |
| 313 } | 313 } |
| 314 | 314 |
| 315 #endif // EmptyClients_h | 315 #endif // EmptyClients_h |
| OLD | NEW |