Chromium Code Reviews| 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 touchActions) OVERRIDE { }; | |
|
esprehn
2013/11/21 16:26:29
This is confusingly named, it's all singular excep
Rick Byers
2013/11/21 22:09:29
Yes, sorry - I switched from plural to singular bu
| |
| 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 164 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 |