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

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

Issue 2882923002: Remove dependency of DateTimeChooserImpl on ChromeClientImpl (Closed)
Patch Set: Review feedback 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/page/ChromeClient.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 } 156 }
157 bool OpenJavaScriptPromptDelegate(LocalFrame*, 157 bool OpenJavaScriptPromptDelegate(LocalFrame*,
158 const String&, 158 const String&,
159 const String&, 159 const String&,
160 String&) override { 160 String&) override {
161 return false; 161 return false;
162 } 162 }
163 163
164 bool HasOpenedPopup() const override { return false; } 164 bool HasOpenedPopup() const override { return false; }
165 PopupMenu* OpenPopupMenu(LocalFrame&, HTMLSelectElement&) override; 165 PopupMenu* OpenPopupMenu(LocalFrame&, HTMLSelectElement&) override;
166 PagePopup* OpenPagePopup(PagePopupClient*) override { return nullptr; }
167 void ClosePagePopup(PagePopup*) override{};
166 DOMWindow* PagePopupWindowForTesting() const override { return nullptr; } 168 DOMWindow* PagePopupWindowForTesting() const override { return nullptr; }
167 169
168 void SetStatusbarText(const String&) override {} 170 void SetStatusbarText(const String&) override {}
169 171
170 bool TabsToLinks() override { return false; } 172 bool TabsToLinks() override { return false; }
171 173
172 void InvalidateRect(const IntRect&) override {} 174 void InvalidateRect(const IntRect&) override {}
173 void ScheduleAnimation(const PlatformFrameView*) override {} 175 void ScheduleAnimation(const PlatformFrameView*) override {}
174 176
175 IntRect ViewportToScreen(const IntRect& r, 177 IntRect ViewportToScreen(const IntRect& r,
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after
472 Frame* NextSibling() const override { return nullptr; } 474 Frame* NextSibling() const override { return nullptr; }
473 Frame* FirstChild() const override { return nullptr; } 475 Frame* FirstChild() const override { return nullptr; }
474 void FrameFocused() const override {} 476 void FrameFocused() const override {}
475 }; 477 };
476 478
477 CORE_EXPORT void FillWithEmptyClients(Page::PageClients&); 479 CORE_EXPORT void FillWithEmptyClients(Page::PageClients&);
478 480
479 } // namespace blink 481 } // namespace blink
480 482
481 #endif // EmptyClients_h 483 #endif // EmptyClients_h
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/page/ChromeClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698