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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 virtual void runOpenPanel(Frame*, PassRefPtr<FileChooser>) OVERRIDE; | 155 virtual void runOpenPanel(Frame*, PassRefPtr<FileChooser>) OVERRIDE; |
156 | 156 |
157 virtual void formStateDidChange(const Node*) OVERRIDE { } | 157 virtual void formStateDidChange(const Node*) OVERRIDE { } |
158 | 158 |
159 virtual void setCursor(const Cursor&) OVERRIDE { } | 159 virtual void setCursor(const Cursor&) OVERRIDE { } |
160 | 160 |
161 virtual void attachRootGraphicsLayer(Frame*, GraphicsLayer*) OVERRIDE { } | 161 virtual void attachRootGraphicsLayer(Frame*, GraphicsLayer*) OVERRIDE { } |
162 virtual void scheduleCompositingLayerFlush() OVERRIDE { } | 162 virtual void scheduleCompositingLayerFlush() OVERRIDE { } |
163 | 163 |
164 virtual void needTouchEvents(bool) OVERRIDE { } | 164 virtual void needTouchEvents(bool) OVERRIDE { } |
| 165 virtual void setTouchAction(TouchAction touchAction) OVERRIDE { }; |
165 | 166 |
166 virtual void numWheelEventHandlersChanged(unsigned) OVERRIDE { } | 167 virtual void numWheelEventHandlersChanged(unsigned) OVERRIDE { } |
167 | 168 |
168 virtual bool shouldRubberBandInDirection(WebCore::ScrollDirection) const OVE
RRIDE { return false; } | 169 virtual bool shouldRubberBandInDirection(WebCore::ScrollDirection) const OVE
RRIDE { return false; } |
169 | 170 |
170 virtual bool isEmptyChromeClient() const OVERRIDE { return true; } | 171 virtual bool isEmptyChromeClient() const OVERRIDE { return true; } |
171 | 172 |
172 virtual void didAssociateFormControls(const Vector<RefPtr<Element> >&) OVERR
IDE { } | 173 virtual void didAssociateFormControls(const Vector<RefPtr<Element> >&) OVERR
IDE { } |
173 | 174 |
174 virtual void popupOpened(PopupContainer* popupContainer, const IntRect& boun
ds, | 175 virtual void popupOpened(PopupContainer* popupContainer, const IntRect& boun
ds, |
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
331 virtual int backListCount() OVERRIDE { return 0; } | 332 virtual int backListCount() OVERRIDE { return 0; } |
332 virtual int forwardListCount() OVERRIDE { return 0; } | 333 virtual int forwardListCount() OVERRIDE { return 0; } |
333 virtual int backForwardListCount() OVERRIDE { return 0; } | 334 virtual int backForwardListCount() OVERRIDE { return 0; } |
334 }; | 335 }; |
335 | 336 |
336 void fillWithEmptyClients(Page::PageClients&); | 337 void fillWithEmptyClients(Page::PageClients&); |
337 | 338 |
338 } | 339 } |
339 | 340 |
340 #endif // EmptyClients_h | 341 #endif // EmptyClients_h |
OLD | NEW |