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

Side by Side Diff: Source/core/loader/FrameLoaderClient.h

Issue 551973005: Streamline frame detach (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved.
3 * Copyright (C) 2012 Google Inc. All rights reserved. 3 * Copyright (C) 2012 Google 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 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 class SocketStreamHandle; 70 class SocketStreamHandle;
71 class SubstituteData; 71 class SubstituteData;
72 class Widget; 72 class Widget;
73 73
74 class FrameLoaderClient : public FrameClient { 74 class FrameLoaderClient : public FrameClient {
75 public: 75 public:
76 virtual ~FrameLoaderClient() { } 76 virtual ~FrameLoaderClient() { }
77 77
78 virtual bool hasWebView() const = 0; // mainly for assertions 78 virtual bool hasWebView() const = 0; // mainly for assertions
79 79
80 virtual void detachedFromParent() = 0;
81
82 virtual void dispatchWillSendRequest(DocumentLoader*, unsigned long iden tifier, ResourceRequest&, const ResourceResponse& redirectResponse) = 0; 80 virtual void dispatchWillSendRequest(DocumentLoader*, unsigned long iden tifier, ResourceRequest&, const ResourceResponse& redirectResponse) = 0;
83 virtual void dispatchDidReceiveResponse(DocumentLoader*, unsigned long i dentifier, const ResourceResponse&) = 0; 81 virtual void dispatchDidReceiveResponse(DocumentLoader*, unsigned long i dentifier, const ResourceResponse&) = 0;
84 virtual void dispatchDidFinishLoading(DocumentLoader*, unsigned long ide ntifier) = 0; 82 virtual void dispatchDidFinishLoading(DocumentLoader*, unsigned long ide ntifier) = 0;
85 virtual void dispatchDidLoadResourceFromMemoryCache(const ResourceReques t&, const ResourceResponse&) = 0; 83 virtual void dispatchDidLoadResourceFromMemoryCache(const ResourceReques t&, const ResourceResponse&) = 0;
86 84
87 virtual void dispatchDidHandleOnloadEvents() = 0; 85 virtual void dispatchDidHandleOnloadEvents() = 0;
88 virtual void dispatchDidReceiveServerRedirectForProvisionalLoad() = 0; 86 virtual void dispatchDidReceiveServerRedirectForProvisionalLoad() = 0;
89 virtual void dispatchDidNavigateWithinPage(HistoryItem*, HistoryCommitTy pe) { } 87 virtual void dispatchDidNavigateWithinPage(HistoryItem*, HistoryCommitTy pe) { }
90 virtual void dispatchWillClose() = 0; 88 virtual void dispatchWillClose() = 0;
91 virtual void dispatchDidStartProvisionalLoad(bool isTransitionNavigation ) = 0; 89 virtual void dispatchDidStartProvisionalLoad(bool isTransitionNavigation ) = 0;
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 virtual void didStopAllLoaders() { } 214 virtual void didStopAllLoaders() { }
217 215
218 virtual void dispatchDidChangeManifest() { } 216 virtual void dispatchDidChangeManifest() { }
219 217
220 virtual bool isFrameLoaderClientImpl() const { return false; } 218 virtual bool isFrameLoaderClientImpl() const { return false; }
221 }; 219 };
222 220
223 } // namespace blink 221 } // namespace blink
224 222
225 #endif // FrameLoaderClient_h 223 #endif // FrameLoaderClient_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698