| 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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 const WebWindowFeatures&, | 102 const WebWindowFeatures&, |
| 103 NavigationPolicy, | 103 NavigationPolicy, |
| 104 SandboxFlags) override { | 104 SandboxFlags) override { |
| 105 return nullptr; | 105 return nullptr; |
| 106 } | 106 } |
| 107 void Show(NavigationPolicy) override {} | 107 void Show(NavigationPolicy) override {} |
| 108 | 108 |
| 109 void DidOverscroll(const FloatSize&, | 109 void DidOverscroll(const FloatSize&, |
| 110 const FloatSize&, | 110 const FloatSize&, |
| 111 const FloatPoint&, | 111 const FloatPoint&, |
| 112 const FloatSize&) override {} | 112 const FloatSize&, |
| 113 const WebScrollBoundaryBehavior&) override {} |
| 113 | 114 |
| 114 void BeginLifecycleUpdates() override {} | 115 void BeginLifecycleUpdates() override {} |
| 115 | 116 |
| 116 bool HadFormInteraction() const override { return false; } | 117 bool HadFormInteraction() const override { return false; } |
| 117 | 118 |
| 118 void StartDragging(LocalFrame*, | 119 void StartDragging(LocalFrame*, |
| 119 const WebDragData&, | 120 const WebDragData&, |
| 120 WebDragOperationsMask, | 121 WebDragOperationsMask, |
| 121 const WebImage& drag_image, | 122 const WebImage& drag_image, |
| 122 const WebPoint& drag_image_offset) {} | 123 const WebPoint& drag_image_offset) {} |
| (...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 484 Frame* NextSibling() const override { return nullptr; } | 485 Frame* NextSibling() const override { return nullptr; } |
| 485 Frame* FirstChild() const override { return nullptr; } | 486 Frame* FirstChild() const override { return nullptr; } |
| 486 void FrameFocused() const override {} | 487 void FrameFocused() const override {} |
| 487 }; | 488 }; |
| 488 | 489 |
| 489 CORE_EXPORT void FillWithEmptyClients(Page::PageClients&); | 490 CORE_EXPORT void FillWithEmptyClients(Page::PageClients&); |
| 490 | 491 |
| 491 } // namespace blink | 492 } // namespace blink |
| 492 | 493 |
| 493 #endif // EmptyClients_h | 494 #endif // EmptyClients_h |
| OLD | NEW |