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

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

Issue 2661743002: PlzNavigate: Invoke didStartProvisionalLoad() when the renderer initiates a navigation in startLoad( (Closed)
Patch Set: Remove CHECK for redirect chain as the redirects may not be populated for provisional loads for ren… Created 3 years, 10 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 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 253
254 void dispatchWillSendRequest(ResourceRequest&) override {} 254 void dispatchWillSendRequest(ResourceRequest&) override {}
255 void dispatchDidReceiveResponse(const ResourceResponse&) override {} 255 void dispatchDidReceiveResponse(const ResourceResponse&) override {}
256 void dispatchDidLoadResourceFromMemoryCache( 256 void dispatchDidLoadResourceFromMemoryCache(
257 const ResourceRequest&, 257 const ResourceRequest&,
258 const ResourceResponse&) override {} 258 const ResourceResponse&) override {}
259 259
260 void dispatchDidHandleOnloadEvents() override {} 260 void dispatchDidHandleOnloadEvents() override {}
261 void dispatchDidReceiveServerRedirectForProvisionalLoad() override {} 261 void dispatchDidReceiveServerRedirectForProvisionalLoad() override {}
262 void dispatchWillCommitProvisionalLoad() override {} 262 void dispatchWillCommitProvisionalLoad() override {}
263 void dispatchDidStartProvisionalLoad() override {} 263 void dispatchDidStartProvisionalLoad(DocumentLoader*) override {}
264 void dispatchDidReceiveTitle(const String&) override {} 264 void dispatchDidReceiveTitle(const String&) override {}
265 void dispatchDidChangeIcons(IconType) override {} 265 void dispatchDidChangeIcons(IconType) override {}
266 void dispatchDidCommitLoad(HistoryItem*, HistoryCommitType) override {} 266 void dispatchDidCommitLoad(HistoryItem*, HistoryCommitType) override {}
267 void dispatchDidFailProvisionalLoad(const ResourceError&, 267 void dispatchDidFailProvisionalLoad(const ResourceError&,
268 HistoryCommitType) override {} 268 HistoryCommitType) override {}
269 void dispatchDidFailLoad(const ResourceError&, HistoryCommitType) override {} 269 void dispatchDidFailLoad(const ResourceError&, HistoryCommitType) override {}
270 void dispatchDidFinishDocumentLoad() override {} 270 void dispatchDidFinishDocumentLoad() override {}
271 void dispatchDidFinishLoad() override {} 271 void dispatchDidFinishLoad() override {}
272 void dispatchDidChangeThemeColor() override {} 272 void dispatchDidChangeThemeColor() override {}
273 273
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
459 Frame* nextSibling() const override { return nullptr; } 459 Frame* nextSibling() const override { return nullptr; }
460 Frame* firstChild() const override { return nullptr; } 460 Frame* firstChild() const override { return nullptr; }
461 void frameFocused() const override {} 461 void frameFocused() const override {}
462 }; 462 };
463 463
464 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); 464 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&);
465 465
466 } // namespace blink 466 } // namespace blink
467 467
468 #endif // EmptyClients_h 468 #endif // EmptyClients_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698