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

Side by Side Diff: third_party/WebKit/Source/web/FrameLoaderClientImpl.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) 2009, 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2009, 2012 Google Inc. All rights reserved.
3 * Copyright (C) 2011 Apple Inc. All rights reserved. 3 * Copyright (C) 2011 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 void dispatchWillSendRequest(ResourceRequest&) override; 85 void dispatchWillSendRequest(ResourceRequest&) override;
86 void dispatchDidReceiveResponse(const ResourceResponse&) override; 86 void dispatchDidReceiveResponse(const ResourceResponse&) override;
87 void dispatchDidLoadResourceFromMemoryCache(const ResourceRequest&, 87 void dispatchDidLoadResourceFromMemoryCache(const ResourceRequest&,
88 const ResourceResponse&) override; 88 const ResourceResponse&) override;
89 void dispatchDidHandleOnloadEvents() override; 89 void dispatchDidHandleOnloadEvents() override;
90 void dispatchDidReceiveServerRedirectForProvisionalLoad() override; 90 void dispatchDidReceiveServerRedirectForProvisionalLoad() override;
91 void dispatchDidNavigateWithinPage(HistoryItem*, 91 void dispatchDidNavigateWithinPage(HistoryItem*,
92 HistoryCommitType, 92 HistoryCommitType,
93 bool contentInitiated) override; 93 bool contentInitiated) override;
94 void dispatchWillCommitProvisionalLoad() override; 94 void dispatchWillCommitProvisionalLoad() override;
95 void dispatchDidStartProvisionalLoad() override; 95 void dispatchDidStartProvisionalLoad(DocumentLoader*) override;
96 void dispatchDidReceiveTitle(const String&) override; 96 void dispatchDidReceiveTitle(const String&) override;
97 void dispatchDidChangeIcons(IconType) override; 97 void dispatchDidChangeIcons(IconType) override;
98 void dispatchDidCommitLoad(HistoryItem*, HistoryCommitType) override; 98 void dispatchDidCommitLoad(HistoryItem*, HistoryCommitType) override;
99 void dispatchDidFailProvisionalLoad(const ResourceError&, 99 void dispatchDidFailProvisionalLoad(const ResourceError&,
100 HistoryCommitType) override; 100 HistoryCommitType) override;
101 void dispatchDidFailLoad(const ResourceError&, HistoryCommitType) override; 101 void dispatchDidFailLoad(const ResourceError&, HistoryCommitType) override;
102 void dispatchDidFinishDocumentLoad() override; 102 void dispatchDidFinishDocumentLoad() override;
103 void dispatchDidFinishLoad() override; 103 void dispatchDidFinishLoad() override;
104 104
105 void dispatchDidChangeThemeColor() override; 105 void dispatchDidChangeThemeColor() override;
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
236 236
237 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, 237 DEFINE_TYPE_CASTS(FrameLoaderClientImpl,
238 FrameLoaderClient, 238 FrameLoaderClient,
239 client, 239 client,
240 client->isFrameLoaderClientImpl(), 240 client->isFrameLoaderClientImpl(),
241 client.isFrameLoaderClientImpl()); 241 client.isFrameLoaderClientImpl());
242 242
243 } // namespace blink 243 } // namespace blink
244 244
245 #endif 245 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/loader/FrameLoaderClient.h ('k') | third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698