Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(815)

Side by Side Diff: third_party/WebKit/Source/core/loader/EmptyClients.h

Issue 2855523002: Deleted Widget/FrameViewBase (Closed)
Patch Set: Add back FrameView::paint_scrollbars_ to hold PaintLayer scrollbars Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 285 matching lines...) Expand 10 before | Expand all | Expand 10 after
471 Frame* NextSibling() const override { return nullptr; } 470 Frame* NextSibling() const override { return nullptr; }
472 Frame* FirstChild() const override { return nullptr; } 471 Frame* FirstChild() const override { return nullptr; }
473 void FrameFocused() const override {} 472 void FrameFocused() const override {}
474 }; 473 };
475 474
476 CORE_EXPORT void FillWithEmptyClients(Page::PageClients&); 475 CORE_EXPORT void FillWithEmptyClients(Page::PageClients&);
477 476
478 } // namespace blink 477 } // namespace blink
479 478
480 #endif // EmptyClients_h 479 #endif // EmptyClients_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698