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

Side by Side Diff: third_party/WebKit/Source/core/loader/FrameLoaderClient.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, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights
3 * reserved. 3 * reserved.
4 * Copyright (C) 2012 Google Inc. All rights reserved. 4 * Copyright (C) 2012 Google Inc. All rights reserved.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions 7 * modification, are permitted provided that the following conditions
8 * are met: 8 * are met:
9 * 9 *
10 * 1. Redistributions of source code must retain the above copyright 10 * 1. Redistributions of source code must retain the above copyright
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 virtual void dispatchDidLoadResourceFromMemoryCache( 95 virtual void dispatchDidLoadResourceFromMemoryCache(
96 const ResourceRequest&, 96 const ResourceRequest&,
97 const ResourceResponse&) = 0; 97 const ResourceResponse&) = 0;
98 98
99 virtual void dispatchDidHandleOnloadEvents() = 0; 99 virtual void dispatchDidHandleOnloadEvents() = 0;
100 virtual void dispatchDidReceiveServerRedirectForProvisionalLoad() = 0; 100 virtual void dispatchDidReceiveServerRedirectForProvisionalLoad() = 0;
101 virtual void dispatchDidNavigateWithinPage(HistoryItem*, 101 virtual void dispatchDidNavigateWithinPage(HistoryItem*,
102 HistoryCommitType, 102 HistoryCommitType,
103 bool contentInitiated) {} 103 bool contentInitiated) {}
104 virtual void dispatchWillCommitProvisionalLoad() = 0; 104 virtual void dispatchWillCommitProvisionalLoad() = 0;
105 virtual void dispatchDidStartProvisionalLoad() = 0; 105 virtual void dispatchDidStartProvisionalLoad(DocumentLoader*) = 0;
106 virtual void dispatchDidReceiveTitle(const String&) = 0; 106 virtual void dispatchDidReceiveTitle(const String&) = 0;
107 virtual void dispatchDidChangeIcons(IconType) = 0; 107 virtual void dispatchDidChangeIcons(IconType) = 0;
108 virtual void dispatchDidCommitLoad(HistoryItem*, HistoryCommitType) = 0; 108 virtual void dispatchDidCommitLoad(HistoryItem*, HistoryCommitType) = 0;
109 virtual void dispatchDidFailProvisionalLoad(const ResourceError&, 109 virtual void dispatchDidFailProvisionalLoad(const ResourceError&,
110 HistoryCommitType) = 0; 110 HistoryCommitType) = 0;
111 virtual void dispatchDidFailLoad(const ResourceError&, HistoryCommitType) = 0; 111 virtual void dispatchDidFailLoad(const ResourceError&, HistoryCommitType) = 0;
112 virtual void dispatchDidFinishDocumentLoad() = 0; 112 virtual void dispatchDidFinishDocumentLoad() = 0;
113 virtual void dispatchDidFinishLoad() = 0; 113 virtual void dispatchDidFinishLoad() = 0;
114 virtual void dispatchDidChangeThemeColor() = 0; 114 virtual void dispatchDidChangeThemeColor() = 0;
115 115
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
338 virtual KURL overrideFlashEmbedWithHTML(const KURL&) { return KURL(); } 338 virtual KURL overrideFlashEmbedWithHTML(const KURL&) { return KURL(); }
339 339
340 virtual BlameContext* frameBlameContext() { return nullptr; } 340 virtual BlameContext* frameBlameContext() { return nullptr; }
341 341
342 virtual void setHasReceivedUserGesture() {} 342 virtual void setHasReceivedUserGesture() {}
343 }; 343 };
344 344
345 } // namespace blink 345 } // namespace blink
346 346
347 #endif // FrameLoaderClient_h 347 #endif // FrameLoaderClient_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/loader/FrameLoader.cpp ('k') | third_party/WebKit/Source/web/FrameLoaderClientImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698