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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 virtual bool allowMedia(const KURL& mediaURL) override; | 143 virtual bool allowMedia(const KURL& mediaURL) override; |
144 virtual bool allowDisplayingInsecureContent(bool enabledPerSettings, Securit
yOrigin*, const KURL&) override; | 144 virtual bool allowDisplayingInsecureContent(bool enabledPerSettings, Securit
yOrigin*, const KURL&) override; |
145 virtual bool allowRunningInsecureContent(bool enabledPerSettings, SecurityOr
igin*, const KURL&) override; | 145 virtual bool allowRunningInsecureContent(bool enabledPerSettings, SecurityOr
igin*, const KURL&) override; |
146 virtual void didNotAllowScript() override; | 146 virtual void didNotAllowScript() override; |
147 virtual void didNotAllowPlugins() override; | 147 virtual void didNotAllowPlugins() override; |
148 | 148 |
149 virtual WebCookieJar* cookieJar() const override; | 149 virtual WebCookieJar* cookieJar() const override; |
150 virtual bool willCheckAndDispatchMessageEvent(SecurityOrigin* target, Messag
eEvent*, LocalFrame* sourceFrame) const override; | 150 virtual bool willCheckAndDispatchMessageEvent(SecurityOrigin* target, Messag
eEvent*, LocalFrame* sourceFrame) const override; |
151 virtual void didChangeName(const String&) override; | 151 virtual void didChangeName(const String&) override; |
152 | 152 |
153 virtual void dispatchWillOpenSocketStream(SocketStreamHandle*) override; | |
154 virtual void dispatchWillOpenWebSocket(WebSocketHandle*) override; | 153 virtual void dispatchWillOpenWebSocket(WebSocketHandle*) override; |
155 | 154 |
156 virtual void dispatchWillStartUsingPeerConnectionHandler(WebRTCPeerConnectio
nHandler*) override; | 155 virtual void dispatchWillStartUsingPeerConnectionHandler(WebRTCPeerConnectio
nHandler*) override; |
157 | 156 |
158 virtual void didRequestAutocomplete(HTMLFormElement*) override; | 157 virtual void didRequestAutocomplete(HTMLFormElement*) override; |
159 | 158 |
160 virtual bool allowWebGL(bool enabledPerSettings) override; | 159 virtual bool allowWebGL(bool enabledPerSettings) override; |
161 virtual void didLoseWebGLContext(int arbRobustnessContextLostReason) overrid
e; | 160 virtual void didLoseWebGLContext(int arbRobustnessContextLostReason) overrid
e; |
162 | 161 |
163 virtual void dispatchWillInsertBody() override; | 162 virtual void dispatchWillInsertBody() override; |
(...skipping 16 matching lines...) Expand all Loading... |
180 // The WebFrame that owns this object and manages its lifetime. Therefore, | 179 // The WebFrame that owns this object and manages its lifetime. Therefore, |
181 // the web frame object is guaranteed to exist. | 180 // the web frame object is guaranteed to exist. |
182 WebLocalFrameImpl* m_webFrame; | 181 WebLocalFrameImpl* m_webFrame; |
183 }; | 182 }; |
184 | 183 |
185 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr
ameLoaderClientImpl(), client.isFrameLoaderClientImpl()); | 184 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr
ameLoaderClientImpl(), client.isFrameLoaderClientImpl()); |
186 | 185 |
187 } // namespace blink | 186 } // namespace blink |
188 | 187 |
189 #endif | 188 #endif |
OLD | NEW |