| 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 const FrameLoadRequest&, | 97 const FrameLoadRequest&, |
| 98 const WebWindowFeatures&, | 98 const WebWindowFeatures&, |
| 99 NavigationPolicy) override { | 99 NavigationPolicy) override { |
| 100 return nullptr; | 100 return nullptr; |
| 101 } | 101 } |
| 102 void Show(NavigationPolicy) override {} | 102 void Show(NavigationPolicy) override {} |
| 103 | 103 |
| 104 void DidOverscroll(const FloatSize&, | 104 void DidOverscroll(const FloatSize&, |
| 105 const FloatSize&, | 105 const FloatSize&, |
| 106 const FloatPoint&, | 106 const FloatPoint&, |
| 107 const FloatSize&) override {} | 107 const FloatSize&, |
| 108 const WebScrollBoundaryBehavior&) override {} |
| 108 | 109 |
| 109 void BeginLifecycleUpdates() override {} | 110 void BeginLifecycleUpdates() override {} |
| 110 | 111 |
| 111 bool HadFormInteraction() const override { return false; } | 112 bool HadFormInteraction() const override { return false; } |
| 112 | 113 |
| 113 void StartDragging(LocalFrame*, | 114 void StartDragging(LocalFrame*, |
| 114 const WebDragData&, | 115 const WebDragData&, |
| 115 WebDragOperationsMask, | 116 WebDragOperationsMask, |
| 116 const WebImage& drag_image, | 117 const WebImage& drag_image, |
| 117 const WebPoint& drag_image_offset) {} | 118 const WebPoint& drag_image_offset) {} |
| (...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 468 Frame* NextSibling() const override { return nullptr; } | 469 Frame* NextSibling() const override { return nullptr; } |
| 469 Frame* FirstChild() const override { return nullptr; } | 470 Frame* FirstChild() const override { return nullptr; } |
| 470 void FrameFocused() const override {} | 471 void FrameFocused() const override {} |
| 471 }; | 472 }; |
| 472 | 473 |
| 473 CORE_EXPORT void FillWithEmptyClients(Page::PageClients&); | 474 CORE_EXPORT void FillWithEmptyClients(Page::PageClients&); |
| 474 | 475 |
| 475 } // namespace blink | 476 } // namespace blink |
| 476 | 477 |
| 477 #endif // EmptyClients_h | 478 #endif // EmptyClients_h |
| OLD | NEW |