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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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(LocalFrame*) override {} | 172 void ScheduleAnimation(LocalFrame*) override {} |
173 | 173 |
174 IntRect ViewportToScreen(const IntRect& r, | 174 IntRect ViewportToScreen(const IntRect& r, const FrameView*) const override { |
175 const FrameViewBase*) const override { | |
176 return r; | 175 return r; |
177 } | 176 } |
178 float WindowToViewportScalar(const float s) const override { return s; } | 177 float WindowToViewportScalar(const float s) const override { return s; } |
179 WebScreenInfo GetScreenInfo() const override { return WebScreenInfo(); } | 178 WebScreenInfo GetScreenInfo() const override { return WebScreenInfo(); } |
180 void ContentsSizeChanged(LocalFrame*, const IntSize&) const override {} | 179 void ContentsSizeChanged(LocalFrame*, const IntSize&) const override {} |
181 | 180 |
182 void ShowMouseOverURL(const HitTestResult&) override {} | 181 void ShowMouseOverURL(const HitTestResult&) override {} |
183 | 182 |
184 void SetToolTip(LocalFrame&, const String&, TextDirection) override {} | 183 void SetToolTip(LocalFrame&, const String&, TextDirection) override {} |
185 | 184 |
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
470 Frame* NextSibling() const override { return nullptr; } | 469 Frame* NextSibling() const override { return nullptr; } |
471 Frame* FirstChild() const override { return nullptr; } | 470 Frame* FirstChild() const override { return nullptr; } |
472 void FrameFocused() const override {} | 471 void FrameFocused() const override {} |
473 }; | 472 }; |
474 | 473 |
475 CORE_EXPORT void FillWithEmptyClients(Page::PageClients&); | 474 CORE_EXPORT void FillWithEmptyClients(Page::PageClients&); |
476 | 475 |
477 } // namespace blink | 476 } // namespace blink |
478 | 477 |
479 #endif // EmptyClients_h | 478 #endif // EmptyClients_h |
OLD | NEW |