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

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

Issue 2907463003: Remove window.status plumbing, it's unused and the spec says it's a dummy (Closed)
Patch Set: Drop accidental change Created 3 years, 6 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 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 String&) override { 162 String&) override {
163 return false; 163 return false;
164 } 164 }
165 165
166 bool HasOpenedPopup() const override { return false; } 166 bool HasOpenedPopup() const override { return false; }
167 PopupMenu* OpenPopupMenu(LocalFrame&, HTMLSelectElement&) override; 167 PopupMenu* OpenPopupMenu(LocalFrame&, HTMLSelectElement&) override;
168 PagePopup* OpenPagePopup(PagePopupClient*) override { return nullptr; } 168 PagePopup* OpenPagePopup(PagePopupClient*) override { return nullptr; }
169 void ClosePagePopup(PagePopup*) override{}; 169 void ClosePagePopup(PagePopup*) override{};
170 DOMWindow* PagePopupWindowForTesting() const override { return nullptr; } 170 DOMWindow* PagePopupWindowForTesting() const override { return nullptr; }
171 171
172 void SetStatusbarText(const String&) override {}
173
174 bool TabsToLinks() override { return false; } 172 bool TabsToLinks() override { return false; }
175 173
176 void InvalidateRect(const IntRect&) override {} 174 void InvalidateRect(const IntRect&) override {}
177 void ScheduleAnimation(const PlatformFrameView*) override {} 175 void ScheduleAnimation(const PlatformFrameView*) override {}
178 176
179 IntRect ViewportToScreen(const IntRect& r, 177 IntRect ViewportToScreen(const IntRect& r,
180 const PlatformFrameView*) const override { 178 const PlatformFrameView*) const override {
181 return r; 179 return r;
182 } 180 }
183 float WindowToViewportScalar(const float s) const override { return s; } 181 float WindowToViewportScalar(const float s) const override { return s; }
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
483 Frame* NextSibling() const override { return nullptr; } 481 Frame* NextSibling() const override { return nullptr; }
484 Frame* FirstChild() const override { return nullptr; } 482 Frame* FirstChild() const override { return nullptr; }
485 void FrameFocused() const override {} 483 void FrameFocused() const override {}
486 }; 484 };
487 485
488 CORE_EXPORT void FillWithEmptyClients(Page::PageClients&); 486 CORE_EXPORT void FillWithEmptyClients(Page::PageClients&);
489 487
490 } // namespace blink 488 } // namespace blink
491 489
492 #endif // EmptyClients_h 490 #endif // EmptyClients_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp ('k') | third_party/WebKit/Source/core/loader/FrameLoader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698