| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 | 76 |
| 77 IntRect pageRect() override { return IntRect(); } | 77 IntRect pageRect() override { return IntRect(); } |
| 78 | 78 |
| 79 void focus() override {} | 79 void focus() override {} |
| 80 | 80 |
| 81 bool canTakeFocus(WebFocusType) override { return false; } | 81 bool canTakeFocus(WebFocusType) override { return false; } |
| 82 void takeFocus(WebFocusType) override {} | 82 void takeFocus(WebFocusType) override {} |
| 83 | 83 |
| 84 void focusedNodeChanged(Node*, Node*) override {} | 84 void focusedNodeChanged(Node*, Node*) override {} |
| 85 void focusedFrameChanged(LocalFrame*) override {} | 85 void focusedFrameChanged(LocalFrame*) override {} |
| 86 Page* createWindow(LocalFrame*, const FrameLoadRequest&, const WindowFeature
s&, NavigationPolicy, ShouldSendReferrer) override { return nullptr; } | 86 Page* createWindow(LocalFrame*, const FrameLoadRequest&, const WindowFeature
s&, NavigationPolicy, ShouldSendReferrer, CreateWindowReason) override { return
nullptr; } |
| 87 void show(NavigationPolicy) override {} | 87 void show(NavigationPolicy, CreateWindowReason) override {} |
| 88 | 88 |
| 89 void didOverscroll(const FloatSize&, const FloatSize&, const FloatPoint&, co
nst FloatSize&) override {} | 89 void didOverscroll(const FloatSize&, const FloatSize&, const FloatPoint&, co
nst FloatSize&) override {} |
| 90 | 90 |
| 91 void setToolbarsVisible(bool) override {} | 91 void setToolbarsVisible(bool) override {} |
| 92 bool toolbarsVisible() override { return false; } | 92 bool toolbarsVisible() override { return false; } |
| 93 | 93 |
| 94 void setStatusbarVisible(bool) override {} | 94 void setStatusbarVisible(bool) override {} |
| 95 bool statusbarVisible() override { return false; } | 95 bool statusbarVisible() override { return false; } |
| 96 | 96 |
| 97 void setScrollbarsVisible(bool) override {} | 97 void setScrollbarsVisible(bool) override {} |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 318 ~EmptyDragClient() override {} | 318 ~EmptyDragClient() override {} |
| 319 DragDestinationAction actionMaskForDrag(DragData*) override { return DragDes
tinationActionNone; } | 319 DragDestinationAction actionMaskForDrag(DragData*) override { return DragDes
tinationActionNone; } |
| 320 void startDrag(DragImage*, const IntPoint&, const IntPoint&, DataTransfer*,
LocalFrame*, bool) override {} | 320 void startDrag(DragImage*, const IntPoint&, const IntPoint&, DataTransfer*,
LocalFrame*, bool) override {} |
| 321 }; | 321 }; |
| 322 | 322 |
| 323 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); | 323 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); |
| 324 | 324 |
| 325 } // namespace blink | 325 } // namespace blink |
| 326 | 326 |
| 327 #endif // EmptyClients_h | 327 #endif // EmptyClients_h |
| OLD | NEW |