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

Side by Side Diff: third_party/WebKit/Source/web/LocalFrameClientImpl.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) 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(DocumentLoader*) override; 95 void dispatchDidStartProvisionalLoad(DocumentLoader*,
96 ResourceRequest&) override;
96 void dispatchDidReceiveTitle(const String&) override; 97 void dispatchDidReceiveTitle(const String&) override;
97 void dispatchDidChangeIcons(IconType) override; 98 void dispatchDidChangeIcons(IconType) override;
98 void dispatchDidCommitLoad(HistoryItem*, HistoryCommitType) override; 99 void dispatchDidCommitLoad(HistoryItem*, HistoryCommitType) override;
99 void dispatchDidFailProvisionalLoad(const ResourceError&, 100 void dispatchDidFailProvisionalLoad(const ResourceError&,
100 HistoryCommitType) override; 101 HistoryCommitType) override;
101 void dispatchDidFailLoad(const ResourceError&, HistoryCommitType) override; 102 void dispatchDidFailLoad(const ResourceError&, HistoryCommitType) override;
102 void dispatchDidFinishDocumentLoad() override; 103 void dispatchDidFinishDocumentLoad() override;
103 void dispatchDidFinishLoad() override; 104 void dispatchDidFinishLoad() override;
104 105
105 void dispatchDidChangeThemeColor() override; 106 void dispatchDidChangeThemeColor() override;
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 239
239 DEFINE_TYPE_CASTS(LocalFrameClientImpl, 240 DEFINE_TYPE_CASTS(LocalFrameClientImpl,
240 LocalFrameClient, 241 LocalFrameClient,
241 client, 242 client,
242 client->isLocalFrameClientImpl(), 243 client->isLocalFrameClientImpl(),
243 client.isLocalFrameClientImpl()); 244 client.isLocalFrameClientImpl());
244 245
245 } // namespace blink 246 } // namespace blink
246 247
247 #endif 248 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/loader/FrameLoader.cpp ('k') | third_party/WebKit/Source/web/LocalFrameClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698