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

Side by Side Diff: third_party/WebKit/Source/web/FrameLoaderClientImpl.h

Issue 2211283004: Drop test-only WebFrameClient params/functions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 3 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 Frame* opener() const override; 77 Frame* opener() const override;
78 void setOpener(Frame*) override; 78 void setOpener(Frame*) override;
79 Frame* parent() const override; 79 Frame* parent() const override;
80 Frame* top() const override; 80 Frame* top() const override;
81 Frame* previousSibling() const override; 81 Frame* previousSibling() const override;
82 Frame* nextSibling() const override; 82 Frame* nextSibling() const override;
83 Frame* firstChild() const override; 83 Frame* firstChild() const override;
84 Frame* lastChild() const override; 84 Frame* lastChild() const override;
85 void willBeDetached() override; 85 void willBeDetached() override;
86 void detached(FrameDetachType) override; 86 void detached(FrameDetachType) override;
87 void dispatchWillSendRequest(DocumentLoader*, unsigned long identifier, Reso urceRequest&, const ResourceResponse& redirectResponse) override; 87 void dispatchWillSendRequest(ResourceRequest&) override;
88 void dispatchDidReceiveResponse(DocumentLoader*, unsigned long identifier, c onst ResourceResponse&) override; 88 void dispatchDidReceiveResponse(const ResourceResponse&) override;
89 void dispatchDidChangeResourcePriority(unsigned long identifier, ResourceLoa dPriority, int intraPriorityValue) override;
90 void dispatchDidFinishLoading(DocumentLoader*, unsigned long identifier) ove rride;
91 void dispatchDidLoadResourceFromMemoryCache(const ResourceRequest&, const Re sourceResponse&) override; 89 void dispatchDidLoadResourceFromMemoryCache(const ResourceRequest&, const Re sourceResponse&) override;
92 void dispatchDidHandleOnloadEvents() override; 90 void dispatchDidHandleOnloadEvents() override;
93 void dispatchDidReceiveServerRedirectForProvisionalLoad() override; 91 void dispatchDidReceiveServerRedirectForProvisionalLoad() override;
94 void dispatchDidNavigateWithinPage(HistoryItem*, HistoryCommitType, bool con tentInitiated) override; 92 void dispatchDidNavigateWithinPage(HistoryItem*, HistoryCommitType, bool con tentInitiated) override;
95 void dispatchWillClose() override; 93 void dispatchWillClose() override;
96 void dispatchDidStartProvisionalLoad(double triggeringEventTime) override; 94 void dispatchDidStartProvisionalLoad(double triggeringEventTime) override;
97 void dispatchDidReceiveTitle(const String&) override; 95 void dispatchDidReceiveTitle(const String&) override;
98 void dispatchDidChangeIcons(IconType) override; 96 void dispatchDidChangeIcons(IconType) override;
99 void dispatchDidCommitLoad(HistoryItem*, HistoryCommitType) override; 97 void dispatchDidCommitLoad(HistoryItem*, HistoryCommitType) override;
100 void dispatchDidFailProvisionalLoad(const ResourceError&, HistoryCommitType) override; 98 void dispatchDidFailProvisionalLoad(const ResourceError&, HistoryCommitType) override;
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 Member<WebLocalFrameImpl> m_webFrame; 195 Member<WebLocalFrameImpl> m_webFrame;
198 196
199 String m_userAgent; 197 String m_userAgent;
200 }; 198 };
201 199
202 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr ameLoaderClientImpl(), client.isFrameLoaderClientImpl()); 200 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr ameLoaderClientImpl(), client.isFrameLoaderClientImpl());
203 201
204 } // namespace blink 202 } // namespace blink
205 203
206 #endif 204 #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