| 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 492 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 503 service_manager::InterfaceProvider* GetInterfaceProvider() override; | 503 service_manager::InterfaceProvider* GetInterfaceProvider() override; |
| 504 void DidAccessInitialDocument() override; | 504 void DidAccessInitialDocument() override; |
| 505 blink::WebLocalFrame* CreateChildFrame( | 505 blink::WebLocalFrame* CreateChildFrame( |
| 506 blink::WebLocalFrame* parent, | 506 blink::WebLocalFrame* parent, |
| 507 blink::WebTreeScopeType scope, | 507 blink::WebTreeScopeType scope, |
| 508 const blink::WebString& name, | 508 const blink::WebString& name, |
| 509 const blink::WebString& fallback_name, | 509 const blink::WebString& fallback_name, |
| 510 blink::WebSandboxFlags sandbox_flags, | 510 blink::WebSandboxFlags sandbox_flags, |
| 511 const blink::WebParsedFeaturePolicy& container_policy, | 511 const blink::WebParsedFeaturePolicy& container_policy, |
| 512 const blink::WebFrameOwnerProperties& frame_owner_properties) override; | 512 const blink::WebFrameOwnerProperties& frame_owner_properties) override; |
| 513 blink::WebFrame* FindFrame(const blink::WebString& name) override; |
| 513 void DidChangeOpener(blink::WebFrame* frame) override; | 514 void DidChangeOpener(blink::WebFrame* frame) override; |
| 514 void FrameDetached(blink::WebLocalFrame* frame, DetachType type) override; | 515 void FrameDetached(blink::WebLocalFrame* frame, DetachType type) override; |
| 515 void FrameFocused() override; | 516 void FrameFocused() override; |
| 516 void WillCommitProvisionalLoad() override; | 517 void WillCommitProvisionalLoad() override; |
| 517 void DidChangeName(const blink::WebString& name) override; | 518 void DidChangeName(const blink::WebString& name) override; |
| 518 void DidEnforceInsecureRequestPolicy( | 519 void DidEnforceInsecureRequestPolicy( |
| 519 blink::WebInsecureRequestPolicy policy) override; | 520 blink::WebInsecureRequestPolicy policy) override; |
| 520 void DidUpdateToUniqueOrigin( | 521 void DidUpdateToUniqueOrigin( |
| 521 bool is_potentially_trustworthy_unique_origin) override; | 522 bool is_potentially_trustworthy_unique_origin) override; |
| 522 void DidChangeFramePolicy( | 523 void DidChangeFramePolicy( |
| (...skipping 898 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1421 std::vector<media::RoutingTokenCallback> pending_routing_token_callbacks_; | 1422 std::vector<media::RoutingTokenCallback> pending_routing_token_callbacks_; |
| 1422 | 1423 |
| 1423 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1424 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1424 | 1425 |
| 1425 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1426 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1426 }; | 1427 }; |
| 1427 | 1428 |
| 1428 } // namespace content | 1429 } // namespace content |
| 1429 | 1430 |
| 1430 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1431 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |