| 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 752 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 763 void OnReloadLoFiImages(); | 763 void OnReloadLoFiImages(); |
| 764 void OnTextSurroundingSelectionRequest(uint32_t max_length); | 764 void OnTextSurroundingSelectionRequest(uint32_t max_length); |
| 765 void OnSetAccessibilityMode(AccessibilityMode new_mode); | 765 void OnSetAccessibilityMode(AccessibilityMode new_mode); |
| 766 void OnSnapshotAccessibilityTree(int callback_id); | 766 void OnSnapshotAccessibilityTree(int callback_id); |
| 767 void OnUpdateOpener(int opener_routing_id); | 767 void OnUpdateOpener(int opener_routing_id); |
| 768 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags); | 768 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags); |
| 769 void OnSetFrameOwnerProperties( | 769 void OnSetFrameOwnerProperties( |
| 770 const blink::WebFrameOwnerProperties& frame_owner_properties); | 770 const blink::WebFrameOwnerProperties& frame_owner_properties); |
| 771 void OnAdvanceFocus(blink::WebFocusType type, int32_t source_routing_id); | 771 void OnAdvanceFocus(blink::WebFocusType type, int32_t source_routing_id); |
| 772 void OnSetFocusedFrame(); | 772 void OnSetFocusedFrame(); |
| 773 void OnWillEnterFullscreen(int fullscreen_frame_routing_id); |
| 773 void OnTextTrackSettingsChanged( | 774 void OnTextTrackSettingsChanged( |
| 774 const FrameMsg_TextTrackSettings_Params& params); | 775 const FrameMsg_TextTrackSettings_Params& params); |
| 775 void OnPostMessageEvent(const FrameMsg_PostMessage_Params& params); | 776 void OnPostMessageEvent(const FrameMsg_PostMessage_Params& params); |
| 776 void OnCommitNavigation(const ResourceResponseHead& response, | 777 void OnCommitNavigation(const ResourceResponseHead& response, |
| 777 const GURL& stream_url, | 778 const GURL& stream_url, |
| 778 const CommonNavigationParams& common_params, | 779 const CommonNavigationParams& common_params, |
| 779 const RequestNavigationParams& request_params); | 780 const RequestNavigationParams& request_params); |
| 780 void OnFailedNavigation(const CommonNavigationParams& common_params, | 781 void OnFailedNavigation(const CommonNavigationParams& common_params, |
| 781 const RequestNavigationParams& request_params, | 782 const RequestNavigationParams& request_params, |
| 782 bool has_stale_copy_in_cache, | 783 bool has_stale_copy_in_cache, |
| (...skipping 423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1206 FrameBlameContext* blame_context_; // Not owned. | 1207 FrameBlameContext* blame_context_; // Not owned. |
| 1207 | 1208 |
| 1208 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1209 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1209 | 1210 |
| 1210 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1211 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1211 }; | 1212 }; |
| 1212 | 1213 |
| 1213 } // namespace content | 1214 } // namespace content |
| 1214 | 1215 |
| 1215 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1216 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |