OLD | NEW |
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 Loading... |
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 |
OLD | NEW |