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

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

Issue 2734633002: PlzNavigate: Fix the http/tests/loading/307-after-303-after-post.html and the http/tests/loading/re… (Closed)
Patch Set: Fix comment Created 3 years, 9 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 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 261
262 void dispatchWillSendRequest(ResourceRequest&) override {} 262 void dispatchWillSendRequest(ResourceRequest&) override {}
263 void dispatchDidReceiveResponse(const ResourceResponse&) override {} 263 void dispatchDidReceiveResponse(const ResourceResponse&) override {}
264 void dispatchDidLoadResourceFromMemoryCache( 264 void dispatchDidLoadResourceFromMemoryCache(
265 const ResourceRequest&, 265 const ResourceRequest&,
266 const ResourceResponse&) override {} 266 const ResourceResponse&) override {}
267 267
268 void dispatchDidHandleOnloadEvents() override {} 268 void dispatchDidHandleOnloadEvents() override {}
269 void dispatchDidReceiveServerRedirectForProvisionalLoad() override {} 269 void dispatchDidReceiveServerRedirectForProvisionalLoad() override {}
270 void dispatchWillCommitProvisionalLoad() override {} 270 void dispatchWillCommitProvisionalLoad() override {}
271 void dispatchDidStartProvisionalLoad(DocumentLoader*) override {} 271 void dispatchDidStartProvisionalLoad(DocumentLoader*,
272 ResourceRequest&) override {}
272 void dispatchDidReceiveTitle(const String&) override {} 273 void dispatchDidReceiveTitle(const String&) override {}
273 void dispatchDidChangeIcons(IconType) override {} 274 void dispatchDidChangeIcons(IconType) override {}
274 void dispatchDidCommitLoad(HistoryItem*, HistoryCommitType) override {} 275 void dispatchDidCommitLoad(HistoryItem*, HistoryCommitType) override {}
275 void dispatchDidFailProvisionalLoad(const ResourceError&, 276 void dispatchDidFailProvisionalLoad(const ResourceError&,
276 HistoryCommitType) override {} 277 HistoryCommitType) override {}
277 void dispatchDidFailLoad(const ResourceError&, HistoryCommitType) override {} 278 void dispatchDidFailLoad(const ResourceError&, HistoryCommitType) override {}
278 void dispatchDidFinishDocumentLoad() override {} 279 void dispatchDidFinishDocumentLoad() override {}
279 void dispatchDidFinishLoad() override {} 280 void dispatchDidFinishLoad() override {}
280 void dispatchDidChangeThemeColor() override {} 281 void dispatchDidChangeThemeColor() override {}
281 282
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
467 Frame* nextSibling() const override { return nullptr; } 468 Frame* nextSibling() const override { return nullptr; }
468 Frame* firstChild() const override { return nullptr; } 469 Frame* firstChild() const override { return nullptr; }
469 void frameFocused() const override {} 470 void frameFocused() const override {}
470 }; 471 };
471 472
472 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&); 473 CORE_EXPORT void fillWithEmptyClients(Page::PageClients&);
473 474
474 } // namespace blink 475 } // namespace blink
475 476
476 #endif // EmptyClients_h 477 #endif // EmptyClients_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/frame/LocalFrameClient.h ('k') | third_party/WebKit/Source/core/loader/FrameLoader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698