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_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 535 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
546 void OnRunBeforeUnloadConfirm(const GURL& frame_url, | 546 void OnRunBeforeUnloadConfirm(const GURL& frame_url, |
547 const base::string16& message, | 547 const base::string16& message, |
548 bool is_reload, | 548 bool is_reload, |
549 IPC::Message* reply_msg); | 549 IPC::Message* reply_msg); |
550 void OnTextSurroundingSelectionResponse(const base::string16& content, | 550 void OnTextSurroundingSelectionResponse(const base::string16& content, |
551 size_t start_offset, | 551 size_t start_offset, |
552 size_t end_offset); | 552 size_t end_offset); |
553 void OnDidAccessInitialDocument(); | 553 void OnDidAccessInitialDocument(); |
554 void OnDidChangeOpener(int32 opener_routing_id); | 554 void OnDidChangeOpener(int32 opener_routing_id); |
555 void OnDidChangeName(const std::string& name); | 555 void OnDidChangeName(const std::string& name); |
| 556 void OnDidEnforceStrictMixedContentChecking(); |
556 void OnDidAssignPageId(int32 page_id); | 557 void OnDidAssignPageId(int32 page_id); |
557 void OnDidChangeSandboxFlags(int32 frame_routing_id, | 558 void OnDidChangeSandboxFlags(int32 frame_routing_id, |
558 blink::WebSandboxFlags flags); | 559 blink::WebSandboxFlags flags); |
559 void OnDidChangeFrameOwnerProperties( | 560 void OnDidChangeFrameOwnerProperties( |
560 int32 frame_routing_id, | 561 int32 frame_routing_id, |
561 const blink::WebFrameOwnerProperties& frame_owner_properties); | 562 const blink::WebFrameOwnerProperties& frame_owner_properties); |
562 void OnUpdateTitle(const base::string16& title, | 563 void OnUpdateTitle(const base::string16& title, |
563 blink::WebTextDirection title_direction); | 564 blink::WebTextDirection title_direction); |
564 void OnUpdateEncoding(const std::string& encoding); | 565 void OnUpdateEncoding(const std::string& encoding); |
565 void OnBeginNavigation(const CommonNavigationParams& common_params, | 566 void OnBeginNavigation(const CommonNavigationParams& common_params, |
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
828 | 829 |
829 // NOTE: This must be the last member. | 830 // NOTE: This must be the last member. |
830 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 831 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
831 | 832 |
832 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 833 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
833 }; | 834 }; |
834 | 835 |
835 } // namespace content | 836 } // namespace content |
836 | 837 |
837 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 838 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
OLD | NEW |