| 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 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 const WTF::String& mime_type, | 167 const WTF::String& mime_type, |
| 168 bool should_prefer_plug_ins_for_images) override; | 168 bool should_prefer_plug_ins_for_images) override; |
| 169 void DidChangeScrollOffset() override; | 169 void DidChangeScrollOffset() override; |
| 170 void DidUpdateCurrentHistoryItem() override; | 170 void DidUpdateCurrentHistoryItem() override; |
| 171 | 171 |
| 172 WebCookieJar* CookieJar() const override; | 172 WebCookieJar* CookieJar() const override; |
| 173 void FrameFocused() const override; | 173 void FrameFocused() const override; |
| 174 void DidChangeName(const String&) override; | 174 void DidChangeName(const String&) override; |
| 175 void DidEnforceInsecureRequestPolicy(WebInsecureRequestPolicy) override; | 175 void DidEnforceInsecureRequestPolicy(WebInsecureRequestPolicy) override; |
| 176 void DidUpdateToUniqueOrigin() override; | 176 void DidUpdateToUniqueOrigin() override; |
| 177 void DidChangeSandboxFlags(Frame* child_frame, SandboxFlags) override; | 177 void DidChangeFramePolicy(Frame* child_frame, |
| 178 SandboxFlags, |
| 179 const WebParsedFeaturePolicy&) override; |
| 178 void DidSetFeaturePolicyHeader( | 180 void DidSetFeaturePolicyHeader( |
| 179 const WebParsedFeaturePolicy& parsed_header) override; | 181 const WebParsedFeaturePolicy& parsed_header) override; |
| 180 void DidAddContentSecurityPolicies( | 182 void DidAddContentSecurityPolicies( |
| 181 const blink::WebVector<WebContentSecurityPolicy>&) override; | 183 const blink::WebVector<WebContentSecurityPolicy>&) override; |
| 182 void DidChangeFrameOwnerProperties(HTMLFrameOwnerElement*) override; | 184 void DidChangeFrameOwnerProperties(HTMLFrameOwnerElement*) override; |
| 183 | 185 |
| 184 void DispatchWillStartUsingPeerConnectionHandler( | 186 void DispatchWillStartUsingPeerConnectionHandler( |
| 185 WebRTCPeerConnectionHandler*) override; | 187 WebRTCPeerConnectionHandler*) override; |
| 186 | 188 |
| 187 bool AllowWebGL(bool enabled_per_settings) override; | 189 bool AllowWebGL(bool enabled_per_settings) override; |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 233 | 235 |
| 234 DEFINE_TYPE_CASTS(LocalFrameClientImpl, | 236 DEFINE_TYPE_CASTS(LocalFrameClientImpl, |
| 235 LocalFrameClient, | 237 LocalFrameClient, |
| 236 client, | 238 client, |
| 237 client->IsLocalFrameClientImpl(), | 239 client->IsLocalFrameClientImpl(), |
| 238 client.IsLocalFrameClientImpl()); | 240 client.IsLocalFrameClientImpl()); |
| 239 | 241 |
| 240 } // namespace blink | 242 } // namespace blink |
| 241 | 243 |
| 242 #endif | 244 #endif |
| OLD | NEW |