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

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

Issue 1316233007: Remove the old didFirstVisuallyNonEmptyLayout hook. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Missed one more thing to remove. Created 5 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/core/loader/FrameLoaderClient.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 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 void dispatchDidReceiveServerRedirectForProvisionalLoad() override {} 195 void dispatchDidReceiveServerRedirectForProvisionalLoad() override {}
196 void dispatchWillClose() override {} 196 void dispatchWillClose() override {}
197 void dispatchDidStartProvisionalLoad(double triggeringEventTime) override {} 197 void dispatchDidStartProvisionalLoad(double triggeringEventTime) override {}
198 void dispatchDidReceiveTitle(const String&) override {} 198 void dispatchDidReceiveTitle(const String&) override {}
199 void dispatchDidChangeIcons(IconType) override {} 199 void dispatchDidChangeIcons(IconType) override {}
200 void dispatchDidCommitLoad(HistoryItem*, HistoryCommitType) override {} 200 void dispatchDidCommitLoad(HistoryItem*, HistoryCommitType) override {}
201 void dispatchDidFailProvisionalLoad(const ResourceError&, HistoryCommitType) override {} 201 void dispatchDidFailProvisionalLoad(const ResourceError&, HistoryCommitType) override {}
202 void dispatchDidFailLoad(const ResourceError&, HistoryCommitType) override { } 202 void dispatchDidFailLoad(const ResourceError&, HistoryCommitType) override { }
203 void dispatchDidFinishDocumentLoad(bool) override {} 203 void dispatchDidFinishDocumentLoad(bool) override {}
204 void dispatchDidFinishLoad() override {} 204 void dispatchDidFinishLoad() override {}
205 void dispatchDidFirstVisuallyNonEmptyLayout() override {}
206 void dispatchDidChangeThemeColor() override {} 205 void dispatchDidChangeThemeColor() override {}
207 206
208 NavigationPolicy decidePolicyForNavigation(const ResourceRequest&, DocumentL oader*, NavigationPolicy) override; 207 NavigationPolicy decidePolicyForNavigation(const ResourceRequest&, DocumentL oader*, NavigationPolicy) override;
209 208
210 void dispatchWillSendSubmitEvent(HTMLFormElement*) override; 209 void dispatchWillSendSubmitEvent(HTMLFormElement*) override;
211 void dispatchWillSubmitForm(HTMLFormElement*) override; 210 void dispatchWillSubmitForm(HTMLFormElement*) override;
212 211
213 void didStartLoading(LoadStartType) override {} 212 void didStartLoading(LoadStartType) override {}
214 void progressEstimateChanged(double) override {} 213 void progressEstimateChanged(double) override {}
215 void didStopLoading() override {} 214 void didStopLoading() override {}
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 ~EmptyDragClient() override {} 323 ~EmptyDragClient() override {}
325 DragDestinationAction actionMaskForDrag(DragData*) override { return DragDes tinationActionNone; } 324 DragDestinationAction actionMaskForDrag(DragData*) override { return DragDes tinationActionNone; }
326 void startDrag(DragImage*, const IntPoint&, const IntPoint&, DataTransfer*, LocalFrame*, bool) override {} 325 void startDrag(DragImage*, const IntPoint&, const IntPoint&, DataTransfer*, LocalFrame*, bool) override {}
327 }; 326 };
328 327
329 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); 328 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&);
330 329
331 } // namespace blink 330 } // namespace blink
332 331
333 #endif // EmptyClients_h 332 #endif // EmptyClients_h
OLDNEW
« no previous file with comments | « no previous file | Source/core/loader/FrameLoaderClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698