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

Side by Side Diff: third_party/WebKit/Source/core/frame/LocalFrameClient.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, 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 virtual void dispatchDidLoadResourceFromMemoryCache( 97 virtual void dispatchDidLoadResourceFromMemoryCache(
98 const ResourceRequest&, 98 const ResourceRequest&,
99 const ResourceResponse&) = 0; 99 const ResourceResponse&) = 0;
100 100
101 virtual void dispatchDidHandleOnloadEvents() = 0; 101 virtual void dispatchDidHandleOnloadEvents() = 0;
102 virtual void dispatchDidReceiveServerRedirectForProvisionalLoad() = 0; 102 virtual void dispatchDidReceiveServerRedirectForProvisionalLoad() = 0;
103 virtual void dispatchDidNavigateWithinPage(HistoryItem*, 103 virtual void dispatchDidNavigateWithinPage(HistoryItem*,
104 HistoryCommitType, 104 HistoryCommitType,
105 bool contentInitiated) {} 105 bool contentInitiated) {}
106 virtual void dispatchWillCommitProvisionalLoad() = 0; 106 virtual void dispatchWillCommitProvisionalLoad() = 0;
107 virtual void dispatchDidStartProvisionalLoad(DocumentLoader*) = 0; 107 virtual void dispatchDidStartProvisionalLoad(DocumentLoader*,
108 ResourceRequest&) = 0;
108 virtual void dispatchDidReceiveTitle(const String&) = 0; 109 virtual void dispatchDidReceiveTitle(const String&) = 0;
109 virtual void dispatchDidChangeIcons(IconType) = 0; 110 virtual void dispatchDidChangeIcons(IconType) = 0;
110 virtual void dispatchDidCommitLoad(HistoryItem*, HistoryCommitType) = 0; 111 virtual void dispatchDidCommitLoad(HistoryItem*, HistoryCommitType) = 0;
111 virtual void dispatchDidFailProvisionalLoad(const ResourceError&, 112 virtual void dispatchDidFailProvisionalLoad(const ResourceError&,
112 HistoryCommitType) = 0; 113 HistoryCommitType) = 0;
113 virtual void dispatchDidFailLoad(const ResourceError&, HistoryCommitType) = 0; 114 virtual void dispatchDidFailLoad(const ResourceError&, HistoryCommitType) = 0;
114 virtual void dispatchDidFinishDocumentLoad() = 0; 115 virtual void dispatchDidFinishDocumentLoad() = 0;
115 virtual void dispatchDidFinishLoad() = 0; 116 virtual void dispatchDidFinishLoad() = 0;
116 virtual void dispatchDidChangeThemeColor() = 0; 117 virtual void dispatchDidChangeThemeColor() = 0;
117 118
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
341 virtual KURL overrideFlashEmbedWithHTML(const KURL&) { return KURL(); } 342 virtual KURL overrideFlashEmbedWithHTML(const KURL&) { return KURL(); }
342 343
343 virtual BlameContext* frameBlameContext() { return nullptr; } 344 virtual BlameContext* frameBlameContext() { return nullptr; }
344 345
345 virtual void setHasReceivedUserGesture() {} 346 virtual void setHasReceivedUserGesture() {}
346 }; 347 };
347 348
348 } // namespace blink 349 } // namespace blink
349 350
350 #endif // LocalFrameClient_h 351 #endif // LocalFrameClient_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698