| 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 WebRemoteFrameClient_h | 5 #ifndef WebRemoteFrameClient_h |
| 6 #define WebRemoteFrameClient_h | 6 #define WebRemoteFrameClient_h |
| 7 | 7 |
| 8 #include "public/platform/WebFocusType.h" | 8 #include "public/platform/WebFocusType.h" |
| 9 #include "public/platform/WebSecurityOrigin.h" | 9 #include "public/platform/WebSecurityOrigin.h" |
| 10 #include "public/web/WebDOMMessageEvent.h" | 10 #include "public/web/WebDOMMessageEvent.h" |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 // This frame updated its opener to another frame. | 50 // This frame updated its opener to another frame. |
| 51 virtual void didChangeOpener(WebFrame* opener) { } | 51 virtual void didChangeOpener(WebFrame* opener) { } |
| 52 | 52 |
| 53 // Continue sequential focus navigation in this frame. This is called when | 53 // Continue sequential focus navigation in this frame. This is called when |
| 54 // the |source| frame is searching for the next focusable element (e.g., in | 54 // the |source| frame is searching for the next focusable element (e.g., in |
| 55 // response to <tab>) and encounters a remote frame. | 55 // response to <tab>) and encounters a remote frame. |
| 56 virtual void advanceFocus(WebFocusType type, WebLocalFrame* source) { } | 56 virtual void advanceFocus(WebFocusType type, WebLocalFrame* source) { } |
| 57 | 57 |
| 58 // This frame was focused by another frame. | 58 // This frame was focused by another frame. |
| 59 virtual void frameFocused() { } | 59 virtual void frameFocused() { } |
| 60 |
| 61 // Within this frame, another frame tried to display mixed content. |
| 62 virtual void triedDisplayingInsecureContent(const WebSecurityOrigin&, const
WebURL&) {} |
| 63 |
| 64 // Within this frame, another frame tried to run mixed content. |
| 65 virtual void triedRunningInsecureContent(const WebSecurityOrigin&, const Web
URL&) {} |
| 60 }; | 66 }; |
| 61 | 67 |
| 62 } // namespace blink | 68 } // namespace blink |
| 63 | 69 |
| 64 #endif // WebRemoteFrameClient_h | 70 #endif // WebRemoteFrameClient_h |
| OLD | NEW |