| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 class FrameTree; | 56 class FrameTree; |
| 57 class FrameTreeNode; | 57 class FrameTreeNode; |
| 58 class PermissionServiceContext; | 58 class PermissionServiceContext; |
| 59 class RenderFrameHostDelegate; | 59 class RenderFrameHostDelegate; |
| 60 class RenderFrameProxyHost; | 60 class RenderFrameProxyHost; |
| 61 class RenderProcessHost; | 61 class RenderProcessHost; |
| 62 class RenderViewHostImpl; | 62 class RenderViewHostImpl; |
| 63 class RenderWidgetHostDelegate; | 63 class RenderWidgetHostDelegate; |
| 64 class RenderWidgetHostImpl; | 64 class RenderWidgetHostImpl; |
| 65 class RenderWidgetHostView; | 65 class RenderWidgetHostView; |
| 66 class ResourceRequestBody; |
| 66 class StreamHandle; | 67 class StreamHandle; |
| 67 class TimeoutMonitor; | 68 class TimeoutMonitor; |
| 69 struct BeginNavigationParams; |
| 68 struct CommitNavigationParams; | 70 struct CommitNavigationParams; |
| 69 struct CommonNavigationParams; | 71 struct CommonNavigationParams; |
| 70 struct ContextMenuParams; | 72 struct ContextMenuParams; |
| 71 struct GlobalRequestID; | 73 struct GlobalRequestID; |
| 72 struct Referrer; | 74 struct Referrer; |
| 73 struct ResourceResponse; | 75 struct ResourceResponse; |
| 74 struct TransitionLayerData; | 76 struct TransitionLayerData; |
| 75 | 77 |
| 76 // Flag arguments for RenderFrameHost creation. | 78 // Flag arguments for RenderFrameHost creation. |
| 77 enum CreateRenderFrameFlags { | 79 enum CreateRenderFrameFlags { |
| (...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 465 IPC::Message* reply_msg); | 467 IPC::Message* reply_msg); |
| 466 void OnTextSurroundingSelectionResponse(const base::string16& content, | 468 void OnTextSurroundingSelectionResponse(const base::string16& content, |
| 467 size_t start_offset, | 469 size_t start_offset, |
| 468 size_t end_offset); | 470 size_t end_offset); |
| 469 void OnDidAccessInitialDocument(); | 471 void OnDidAccessInitialDocument(); |
| 470 void OnDidDisownOpener(); | 472 void OnDidDisownOpener(); |
| 471 void OnDidAssignPageId(int32 page_id); | 473 void OnDidAssignPageId(int32 page_id); |
| 472 void OnUpdateTitle(const base::string16& title, | 474 void OnUpdateTitle(const base::string16& title, |
| 473 blink::WebTextDirection title_direction); | 475 blink::WebTextDirection title_direction); |
| 474 void OnUpdateEncoding(const std::string& encoding); | 476 void OnUpdateEncoding(const std::string& encoding); |
| 475 void OnBeginNavigation(const FrameHostMsg_BeginNavigation_Params& params, | 477 void OnBeginNavigation(const CommonNavigationParams& common_params, |
| 476 const CommonNavigationParams& common_params); | 478 const BeginNavigationParams& begin_params, |
| 479 scoped_refptr<ResourceRequestBody> body); |
| 477 void OnAccessibilityEvents( | 480 void OnAccessibilityEvents( |
| 478 const std::vector<AccessibilityHostMsg_EventParams>& params, | 481 const std::vector<AccessibilityHostMsg_EventParams>& params, |
| 479 int reset_token); | 482 int reset_token); |
| 480 void OnAccessibilityLocationChanges( | 483 void OnAccessibilityLocationChanges( |
| 481 const std::vector<AccessibilityHostMsg_LocationChangeParams>& params); | 484 const std::vector<AccessibilityHostMsg_LocationChangeParams>& params); |
| 482 void OnAccessibilityFindInPageResult( | 485 void OnAccessibilityFindInPageResult( |
| 483 const AccessibilityHostMsg_FindInPageResultParams& params); | 486 const AccessibilityHostMsg_FindInPageResultParams& params); |
| 484 void OnToggleFullscreen(bool enter_fullscreen); | 487 void OnToggleFullscreen(bool enter_fullscreen); |
| 485 | 488 |
| 486 #if defined(OS_MACOSX) || defined(OS_ANDROID) | 489 #if defined(OS_MACOSX) || defined(OS_ANDROID) |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 649 | 652 |
| 650 // NOTE: This must be the last member. | 653 // NOTE: This must be the last member. |
| 651 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 654 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
| 652 | 655 |
| 653 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 656 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
| 654 }; | 657 }; |
| 655 | 658 |
| 656 } // namespace content | 659 } // namespace content |
| 657 | 660 |
| 658 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 661 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| OLD | NEW |