| 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 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 | 162 |
| 163 bool HasOpenedPopup() const override { return false; } | 163 bool HasOpenedPopup() const override { return false; } |
| 164 PopupMenu* OpenPopupMenu(LocalFrame&, HTMLSelectElement&) override; | 164 PopupMenu* OpenPopupMenu(LocalFrame&, HTMLSelectElement&) override; |
| 165 DOMWindow* PagePopupWindowForTesting() const override { return nullptr; } | 165 DOMWindow* PagePopupWindowForTesting() const override { return nullptr; } |
| 166 | 166 |
| 167 void SetStatusbarText(const String&) override {} | 167 void SetStatusbarText(const String&) override {} |
| 168 | 168 |
| 169 bool TabsToLinks() override { return false; } | 169 bool TabsToLinks() override { return false; } |
| 170 | 170 |
| 171 void InvalidateRect(const IntRect&) override {} | 171 void InvalidateRect(const IntRect&) override {} |
| 172 void ScheduleAnimation(FrameViewBase*) override {} | 172 void ScheduleAnimation(LocalFrame*) override {} |
| 173 | 173 |
| 174 IntRect ViewportToScreen(const IntRect& r, | 174 IntRect ViewportToScreen(const IntRect& r, |
| 175 const FrameViewBase*) const override { | 175 const FrameViewBase*) const override { |
| 176 return r; | 176 return r; |
| 177 } | 177 } |
| 178 float WindowToViewportScalar(const float s) const override { return s; } | 178 float WindowToViewportScalar(const float s) const override { return s; } |
| 179 WebScreenInfo GetScreenInfo() const override { return WebScreenInfo(); } | 179 WebScreenInfo GetScreenInfo() const override { return WebScreenInfo(); } |
| 180 void ContentsSizeChanged(LocalFrame*, const IntSize&) const override {} | 180 void ContentsSizeChanged(LocalFrame*, const IntSize&) const override {} |
| 181 | 181 |
| 182 void ShowMouseOverURL(const HitTestResult&) override {} | 182 void ShowMouseOverURL(const HitTestResult&) override {} |
| (...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 470 Frame* NextSibling() const override { return nullptr; } | 470 Frame* NextSibling() const override { return nullptr; } |
| 471 Frame* FirstChild() const override { return nullptr; } | 471 Frame* FirstChild() const override { return nullptr; } |
| 472 void FrameFocused() const override {} | 472 void FrameFocused() const override {} |
| 473 }; | 473 }; |
| 474 | 474 |
| 475 CORE_EXPORT void FillWithEmptyClients(Page::PageClients&); | 475 CORE_EXPORT void FillWithEmptyClients(Page::PageClients&); |
| 476 | 476 |
| 477 } // namespace blink | 477 } // namespace blink |
| 478 | 478 |
| 479 #endif // EmptyClients_h | 479 #endif // EmptyClients_h |
| OLD | NEW |