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 447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
458 void frameDetached(blink::WebFrame* frame, DetachType type) override; | 458 void frameDetached(blink::WebFrame* frame, DetachType type) override; |
459 void frameFocused() override; | 459 void frameFocused() override; |
460 void willClose(blink::WebFrame* frame) override; | 460 void willClose(blink::WebFrame* frame) override; |
461 void didChangeName(const blink::WebString& name, | 461 void didChangeName(const blink::WebString& name, |
462 const blink::WebString& unique_name) override; | 462 const blink::WebString& unique_name) override; |
463 void didEnforceStrictMixedContentChecking() override; | 463 void didEnforceStrictMixedContentChecking() override; |
464 void didUpdateToUniqueOrigin( | 464 void didUpdateToUniqueOrigin( |
465 bool is_potentially_trustworthy_unique_origin) override; | 465 bool is_potentially_trustworthy_unique_origin) override; |
466 void didChangeSandboxFlags(blink::WebFrame* child_frame, | 466 void didChangeSandboxFlags(blink::WebFrame* child_frame, |
467 blink::WebSandboxFlags flags) override; | 467 blink::WebSandboxFlags flags) override; |
| 468 void didAddContentSecurityPolicy( |
| 469 const blink::WebString& header_value, |
| 470 blink::WebContentSecurityPolicyType type, |
| 471 blink::WebContentSecurityPolicySource source) override; |
468 void didChangeFrameOwnerProperties( | 472 void didChangeFrameOwnerProperties( |
469 blink::WebFrame* child_frame, | 473 blink::WebFrame* child_frame, |
470 const blink::WebFrameOwnerProperties& frame_owner_properties) override; | 474 const blink::WebFrameOwnerProperties& frame_owner_properties) override; |
471 void didMatchCSS( | 475 void didMatchCSS( |
472 blink::WebLocalFrame* frame, | 476 blink::WebLocalFrame* frame, |
473 const blink::WebVector<blink::WebString>& newly_matching_selectors, | 477 const blink::WebVector<blink::WebString>& newly_matching_selectors, |
474 const blink::WebVector<blink::WebString>& stopped_matching_selectors) | 478 const blink::WebVector<blink::WebString>& stopped_matching_selectors) |
475 override; | 479 override; |
476 bool shouldReportDetailedMessageForSource( | 480 bool shouldReportDetailedMessageForSource( |
477 const blink::WebString& source) override; | 481 const blink::WebString& source) override; |
(...skipping 777 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1255 #endif | 1259 #endif |
1256 | 1260 |
1257 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1261 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
1258 | 1262 |
1259 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1263 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
1260 }; | 1264 }; |
1261 | 1265 |
1262 } // namespace content | 1266 } // namespace content |
1263 | 1267 |
1264 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1268 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |