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