| OLD | NEW |
| 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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 bool allowMedia(const KURL& mediaURL) override; | 138 bool allowMedia(const KURL& mediaURL) override; |
| 139 bool allowDisplayingInsecureContent(bool enabledPerSettings, SecurityOrigin*
, const KURL&) override; | 139 bool allowDisplayingInsecureContent(bool enabledPerSettings, SecurityOrigin*
, const KURL&) override; |
| 140 bool allowRunningInsecureContent(bool enabledPerSettings, SecurityOrigin*, c
onst KURL&) override; | 140 bool allowRunningInsecureContent(bool enabledPerSettings, SecurityOrigin*, c
onst KURL&) override; |
| 141 void didNotAllowScript() override; | 141 void didNotAllowScript() override; |
| 142 void didNotAllowPlugins() override; | 142 void didNotAllowPlugins() override; |
| 143 | 143 |
| 144 WebCookieJar* cookieJar() const override; | 144 WebCookieJar* cookieJar() const override; |
| 145 bool willCheckAndDispatchMessageEvent(SecurityOrigin* target, MessageEvent*,
LocalFrame* sourceFrame) const override; | 145 bool willCheckAndDispatchMessageEvent(SecurityOrigin* target, MessageEvent*,
LocalFrame* sourceFrame) const override; |
| 146 void didChangeName(const String&) override; | 146 void didChangeName(const String&) override; |
| 147 void didChangeSandboxFlags(Frame* childFrame, SandboxFlags) override; | 147 void didChangeSandboxFlags(Frame* childFrame, SandboxFlags) override; |
| 148 void didChangeFrameOwnerProperties(Frame*, ScrollbarMode, int, int) override
; |
| 148 | 149 |
| 149 void dispatchWillOpenWebSocket(WebSocketHandle*) override; | 150 void dispatchWillOpenWebSocket(WebSocketHandle*) override; |
| 150 | 151 |
| 151 void dispatchWillStartUsingPeerConnectionHandler(WebRTCPeerConnectionHandler
*) override; | 152 void dispatchWillStartUsingPeerConnectionHandler(WebRTCPeerConnectionHandler
*) override; |
| 152 | 153 |
| 153 void didRequestAutocomplete(HTMLFormElement*) override; | 154 void didRequestAutocomplete(HTMLFormElement*) override; |
| 154 | 155 |
| 155 bool allowWebGL(bool enabledPerSettings) override; | 156 bool allowWebGL(bool enabledPerSettings) override; |
| 156 void didLoseWebGLContext(int arbRobustnessContextLostReason) override; | 157 void didLoseWebGLContext(int arbRobustnessContextLostReason) override; |
| 157 | 158 |
| (...skipping 26 matching lines...) Expand all Loading... |
| 184 // The WebFrame that owns this object and manages its lifetime. Therefore, | 185 // The WebFrame that owns this object and manages its lifetime. Therefore, |
| 185 // the web frame object is guaranteed to exist. | 186 // the web frame object is guaranteed to exist. |
| 186 RawPtrWillBeMember<WebLocalFrameImpl> m_webFrame; | 187 RawPtrWillBeMember<WebLocalFrameImpl> m_webFrame; |
| 187 }; | 188 }; |
| 188 | 189 |
| 189 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr
ameLoaderClientImpl(), client.isFrameLoaderClientImpl()); | 190 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr
ameLoaderClientImpl(), client.isFrameLoaderClientImpl()); |
| 190 | 191 |
| 191 } // namespace blink | 192 } // namespace blink |
| 192 | 193 |
| 193 #endif | 194 #endif |
| OLD | NEW |