| 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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 virtual void setStatusbarText(const String&) { } | 130 virtual void setStatusbarText(const String&) { } |
| 131 | 131 |
| 132 virtual KeyboardUIMode keyboardUIMode() { return KeyboardAccessDefault; } | 132 virtual KeyboardUIMode keyboardUIMode() { return KeyboardAccessDefault; } |
| 133 | 133 |
| 134 virtual IntRect windowResizerRect() const { return IntRect(); } | 134 virtual IntRect windowResizerRect() const { return IntRect(); } |
| 135 | 135 |
| 136 virtual void invalidateRootView(const IntRect&) OVERRIDE { } | 136 virtual void invalidateRootView(const IntRect&) OVERRIDE { } |
| 137 virtual void invalidateContentsAndRootView(const IntRect&) OVERRIDE { } | 137 virtual void invalidateContentsAndRootView(const IntRect&) OVERRIDE { } |
| 138 virtual void invalidateContentsForSlowScroll(const IntRect&) OVERRIDE { } | 138 virtual void invalidateContentsForSlowScroll(const IntRect&) OVERRIDE { } |
| 139 virtual void scroll(const IntSize&, const IntRect&, const IntRect&) { } | 139 virtual void scroll(const IntSize&, const IntRect&, const IntRect&) { } |
| 140 #if USE(TILED_BACKING_STORE) | |
| 141 virtual void delegatedScrollRequested(const IntPoint&) { } | |
| 142 #endif | |
| 143 virtual void scheduleAnimation() { } | 140 virtual void scheduleAnimation() { } |
| 144 | 141 |
| 145 virtual IntPoint screenToRootView(const IntPoint& p) const OVERRIDE { return
p; } | 142 virtual IntPoint screenToRootView(const IntPoint& p) const OVERRIDE { return
p; } |
| 146 virtual IntRect rootViewToScreen(const IntRect& r) const OVERRIDE { return r
; } | 143 virtual IntRect rootViewToScreen(const IntRect& r) const OVERRIDE { return r
; } |
| 147 virtual PlatformPageClient platformPageClient() const { return 0; } | 144 virtual PlatformPageClient platformPageClient() const { return 0; } |
| 148 virtual void contentsSizeChanged(Frame*, const IntSize&) const { } | 145 virtual void contentsSizeChanged(Frame*, const IntSize&) const { } |
| 149 | 146 |
| 150 virtual void scrollbarsModeDidChange() const { } | 147 virtual void scrollbarsModeDidChange() const { } |
| 151 virtual void mouseDidMoveOverElement(const HitTestResult&, unsigned) { } | 148 virtual void mouseDidMoveOverElement(const HitTestResult&, unsigned) { } |
| 152 | 149 |
| (...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 572 virtual void setController(DeviceOrientationController*) { } | 569 virtual void setController(DeviceOrientationController*) { } |
| 573 virtual DeviceOrientationData* lastOrientation() const { return 0; } | 570 virtual DeviceOrientationData* lastOrientation() const { return 0; } |
| 574 virtual void deviceOrientationControllerDestroyed() { } | 571 virtual void deviceOrientationControllerDestroyed() { } |
| 575 }; | 572 }; |
| 576 | 573 |
| 577 void fillWithEmptyClients(Page::PageClients&); | 574 void fillWithEmptyClients(Page::PageClients&); |
| 578 | 575 |
| 579 } | 576 } |
| 580 | 577 |
| 581 #endif // EmptyClients_h | 578 #endif // EmptyClients_h |
| OLD | NEW |