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 2926553004: Remove trailing semicolon at the end of a method definition (Closed)
Patch Set: rebase 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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 bool OpenJavaScriptPromptDelegate(LocalFrame*, 145 bool OpenJavaScriptPromptDelegate(LocalFrame*,
146 const String&, 146 const String&,
147 const String&, 147 const String&,
148 String&) override { 148 String&) override {
149 return false; 149 return false;
150 } 150 }
151 151
152 bool HasOpenedPopup() const override { return false; } 152 bool HasOpenedPopup() const override { return false; }
153 PopupMenu* OpenPopupMenu(LocalFrame&, HTMLSelectElement&) override; 153 PopupMenu* OpenPopupMenu(LocalFrame&, HTMLSelectElement&) override;
154 PagePopup* OpenPagePopup(PagePopupClient*) override { return nullptr; } 154 PagePopup* OpenPagePopup(PagePopupClient*) override { return nullptr; }
155 void ClosePagePopup(PagePopup*) override{}; 155 void ClosePagePopup(PagePopup*) override {}
156 DOMWindow* PagePopupWindowForTesting() const override { return nullptr; } 156 DOMWindow* PagePopupWindowForTesting() const override { return nullptr; }
157 157
158 bool TabsToLinks() override { return false; } 158 bool TabsToLinks() override { return false; }
159 159
160 void InvalidateRect(const IntRect&) override {} 160 void InvalidateRect(const IntRect&) override {}
161 void ScheduleAnimation(const PlatformFrameView*) override {} 161 void ScheduleAnimation(const PlatformFrameView*) override {}
162 162
163 IntRect ViewportToScreen(const IntRect& r, 163 IntRect ViewportToScreen(const IntRect& r,
164 const PlatformFrameView*) const override { 164 const PlatformFrameView*) const override {
165 return r; 165 return r;
(...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after
468 Frame* NextSibling() const override { return nullptr; } 468 Frame* NextSibling() const override { return nullptr; }
469 Frame* FirstChild() const override { return nullptr; } 469 Frame* FirstChild() const override { return nullptr; }
470 void FrameFocused() const override {} 470 void FrameFocused() const override {}
471 }; 471 };
472 472
473 CORE_EXPORT void FillWithEmptyClients(Page::PageClients&); 473 CORE_EXPORT void FillWithEmptyClients(Page::PageClients&);
474 474
475 } // namespace blink 475 } // namespace blink
476 476
477 #endif // EmptyClients_h 477 #endif // EmptyClients_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698