| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 437 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 448 const blink::WebString& name, | 448 const blink::WebString& name, |
| 449 const blink::WebString& unique_name, | 449 const blink::WebString& unique_name, |
| 450 blink::WebSandboxFlags sandbox_flags, | 450 blink::WebSandboxFlags sandbox_flags, |
| 451 const blink::WebFrameOwnerProperties& frame_owner_properties) override; | 451 const blink::WebFrameOwnerProperties& frame_owner_properties) override; |
| 452 void didChangeOpener(blink::WebFrame* frame) override; | 452 void didChangeOpener(blink::WebFrame* frame) override; |
| 453 void frameDetached(blink::WebFrame* frame, DetachType type) override; | 453 void frameDetached(blink::WebFrame* frame, DetachType type) override; |
| 454 void frameFocused() override; | 454 void frameFocused() override; |
| 455 void willClose(blink::WebFrame* frame) override; | 455 void willClose(blink::WebFrame* frame) override; |
| 456 void didChangeName(const blink::WebString& name, | 456 void didChangeName(const blink::WebString& name, |
| 457 const blink::WebString& unique_name) override; | 457 const blink::WebString& unique_name) override; |
| 458 void didEnforceStrictMixedContentChecking() override; | 458 void didEnforceInsecureRequestPolicy( |
| 459 blink::WebInsecureRequestPolicy policy) override; |
| 459 void didUpdateToUniqueOrigin( | 460 void didUpdateToUniqueOrigin( |
| 460 bool is_potentially_trustworthy_unique_origin) override; | 461 bool is_potentially_trustworthy_unique_origin) override; |
| 461 void didChangeSandboxFlags(blink::WebFrame* child_frame, | 462 void didChangeSandboxFlags(blink::WebFrame* child_frame, |
| 462 blink::WebSandboxFlags flags) override; | 463 blink::WebSandboxFlags flags) override; |
| 463 void didAddContentSecurityPolicy( | 464 void didAddContentSecurityPolicy( |
| 464 const blink::WebString& header_value, | 465 const blink::WebString& header_value, |
| 465 blink::WebContentSecurityPolicyType type, | 466 blink::WebContentSecurityPolicyType type, |
| 466 blink::WebContentSecurityPolicySource source) override; | 467 blink::WebContentSecurityPolicySource source) override; |
| 467 void didChangeFrameOwnerProperties( | 468 void didChangeFrameOwnerProperties( |
| 468 blink::WebFrame* child_frame, | 469 blink::WebFrame* child_frame, |
| (...skipping 782 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1251 #endif | 1252 #endif |
| 1252 | 1253 |
| 1253 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1254 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1254 | 1255 |
| 1255 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1256 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1256 }; | 1257 }; |
| 1257 | 1258 |
| 1258 } // namespace content | 1259 } // namespace content |
| 1259 | 1260 |
| 1260 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1261 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |