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