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

Side by Side Diff: public/web/WebRemoteFrame.h

Issue 937203003: Make load events in iframe elements work with OOPIF (Blink side). (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rename DispatchFrameOwnerLoadEvent to DispatchLoadEventForFrameOwner Created 5 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
« no previous file with comments | « public/web/WebFrameClient.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef WebRemoteFrame_h 5 #ifndef WebRemoteFrame_h
6 #define WebRemoteFrame_h 6 #define WebRemoteFrame_h
7 7
8 #include "public/web/WebFrame.h" 8 #include "public/web/WebFrame.h"
9 #include "public/web/WebSandboxFlags.h" 9 #include "public/web/WebSandboxFlags.h"
10 10
(...skipping 17 matching lines...) Expand all
28 28
29 // Set security origin replicated from another process. 29 // Set security origin replicated from another process.
30 virtual void setReplicatedOrigin(const WebSecurityOrigin&) const = 0; 30 virtual void setReplicatedOrigin(const WebSecurityOrigin&) const = 0;
31 31
32 // Set sandbox flags replicated from another process. 32 // Set sandbox flags replicated from another process.
33 virtual void setReplicatedSandboxFlags(WebSandboxFlags) const = 0; 33 virtual void setReplicatedSandboxFlags(WebSandboxFlags) const = 0;
34 34
35 // Set frame name replicated from another process. 35 // Set frame name replicated from another process.
36 virtual void setReplicatedName(const WebString&) const = 0; 36 virtual void setReplicatedName(const WebString&) const = 0;
37 37
38 virtual void DispatchLoadEventForFrameOwner() const = 0;
39
38 virtual void didStartLoading() = 0; 40 virtual void didStartLoading() = 0;
39 virtual void didStopLoading() = 0; 41 virtual void didStopLoading() = 0;
40 }; 42 };
41 43
42 } // namespace blink 44 } // namespace blink
43 45
44 #endif // WebRemoteFrame_h 46 #endif // WebRemoteFrame_h
OLDNEW
« no previous file with comments | « public/web/WebFrameClient.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698