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 478 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
489 IPC::Message* reply_msg); | 489 IPC::Message* reply_msg); |
490 void OnRunBeforeUnloadConfirm(const GURL& frame_url, | 490 void OnRunBeforeUnloadConfirm(const GURL& frame_url, |
491 const base::string16& message, | 491 const base::string16& message, |
492 bool is_reload, | 492 bool is_reload, |
493 IPC::Message* reply_msg); | 493 IPC::Message* reply_msg); |
494 void OnTextSurroundingSelectionResponse(const base::string16& content, | 494 void OnTextSurroundingSelectionResponse(const base::string16& content, |
495 size_t start_offset, | 495 size_t start_offset, |
496 size_t end_offset); | 496 size_t end_offset); |
497 void OnDidAccessInitialDocument(); | 497 void OnDidAccessInitialDocument(); |
498 void OnDidDisownOpener(); | 498 void OnDidDisownOpener(); |
| 499 void OnDidChangeName(const std::string& name); |
499 void OnDidAssignPageId(int32 page_id); | 500 void OnDidAssignPageId(int32 page_id); |
500 void OnDidChangeSandboxFlags(int32 frame_routing_id, SandboxFlags flags); | 501 void OnDidChangeSandboxFlags(int32 frame_routing_id, SandboxFlags flags); |
501 void OnUpdateTitle(const base::string16& title, | 502 void OnUpdateTitle(const base::string16& title, |
502 blink::WebTextDirection title_direction); | 503 blink::WebTextDirection title_direction); |
503 void OnUpdateEncoding(const std::string& encoding); | 504 void OnUpdateEncoding(const std::string& encoding); |
504 void OnBeginNavigation(const CommonNavigationParams& common_params, | 505 void OnBeginNavigation(const CommonNavigationParams& common_params, |
505 const BeginNavigationParams& begin_params, | 506 const BeginNavigationParams& begin_params, |
506 scoped_refptr<ResourceRequestBody> body); | 507 scoped_refptr<ResourceRequestBody> body); |
507 void OnDispatchLoad(); | 508 void OnDispatchLoad(); |
508 void OnAccessibilityEvents( | 509 void OnAccessibilityEvents( |
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
707 | 708 |
708 // NOTE: This must be the last member. | 709 // NOTE: This must be the last member. |
709 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 710 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
710 | 711 |
711 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 712 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
712 }; | 713 }; |
713 | 714 |
714 } // namespace content | 715 } // namespace content |
715 | 716 |
716 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 717 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
OLD | NEW |