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 432 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
443 const blink::WebString& unique_name, | 443 const blink::WebString& unique_name, |
444 blink::WebSandboxFlags sandbox_flags, | 444 blink::WebSandboxFlags sandbox_flags, |
445 const blink::WebFrameOwnerProperties& frame_owner_properties) override; | 445 const blink::WebFrameOwnerProperties& frame_owner_properties) override; |
446 void didChangeOpener(blink::WebFrame* frame) override; | 446 void didChangeOpener(blink::WebFrame* frame) override; |
447 void frameDetached(blink::WebFrame* frame, DetachType type) override; | 447 void frameDetached(blink::WebFrame* frame, DetachType type) override; |
448 void frameFocused() override; | 448 void frameFocused() override; |
449 void willClose(blink::WebFrame* frame) override; | 449 void willClose(blink::WebFrame* frame) override; |
450 void didChangeName(const blink::WebString& name, | 450 void didChangeName(const blink::WebString& name, |
451 const blink::WebString& unique_name) override; | 451 const blink::WebString& unique_name) override; |
452 void didEnforceStrictMixedContentChecking() override; | 452 void didEnforceStrictMixedContentChecking() override; |
| 453 void didUpdateToUniqueOrigin( |
| 454 bool is_potentially_trustworthy_unique_origin) override; |
453 void didChangeSandboxFlags(blink::WebFrame* child_frame, | 455 void didChangeSandboxFlags(blink::WebFrame* child_frame, |
454 blink::WebSandboxFlags flags) override; | 456 blink::WebSandboxFlags flags) override; |
455 void didChangeFrameOwnerProperties( | 457 void didChangeFrameOwnerProperties( |
456 blink::WebFrame* child_frame, | 458 blink::WebFrame* child_frame, |
457 const blink::WebFrameOwnerProperties& frame_owner_properties) override; | 459 const blink::WebFrameOwnerProperties& frame_owner_properties) override; |
458 void didMatchCSS( | 460 void didMatchCSS( |
459 blink::WebLocalFrame* frame, | 461 blink::WebLocalFrame* frame, |
460 const blink::WebVector<blink::WebString>& newly_matching_selectors, | 462 const blink::WebVector<blink::WebString>& newly_matching_selectors, |
461 const blink::WebVector<blink::WebString>& stopped_matching_selectors) | 463 const blink::WebVector<blink::WebString>& stopped_matching_selectors) |
462 override; | 464 override; |
(...skipping 745 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1208 #endif | 1210 #endif |
1209 | 1211 |
1210 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1212 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
1211 | 1213 |
1212 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1214 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
1213 }; | 1215 }; |
1214 | 1216 |
1215 } // namespace content | 1217 } // namespace content |
1216 | 1218 |
1217 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1219 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |