| 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 759 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 770 void OnReloadLoFiImages(); | 770 void OnReloadLoFiImages(); |
| 771 void OnTextSurroundingSelectionRequest(uint32_t max_length); | 771 void OnTextSurroundingSelectionRequest(uint32_t max_length); |
| 772 void OnSetAccessibilityMode(AccessibilityMode new_mode); | 772 void OnSetAccessibilityMode(AccessibilityMode new_mode); |
| 773 void OnSnapshotAccessibilityTree(int callback_id); | 773 void OnSnapshotAccessibilityTree(int callback_id); |
| 774 void OnUpdateOpener(int opener_routing_id); | 774 void OnUpdateOpener(int opener_routing_id); |
| 775 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags); | 775 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags); |
| 776 void OnSetFrameOwnerProperties( | 776 void OnSetFrameOwnerProperties( |
| 777 const blink::WebFrameOwnerProperties& frame_owner_properties); | 777 const blink::WebFrameOwnerProperties& frame_owner_properties); |
| 778 void OnAdvanceFocus(blink::WebFocusType type, int32_t source_routing_id); | 778 void OnAdvanceFocus(blink::WebFocusType type, int32_t source_routing_id); |
| 779 void OnSetFocusedFrame(); | 779 void OnSetFocusedFrame(); |
| 780 void OnUnsetFocusedFrame(); |
| 780 void OnTextTrackSettingsChanged( | 781 void OnTextTrackSettingsChanged( |
| 781 const FrameMsg_TextTrackSettings_Params& params); | 782 const FrameMsg_TextTrackSettings_Params& params); |
| 782 void OnPostMessageEvent(const FrameMsg_PostMessage_Params& params); | 783 void OnPostMessageEvent(const FrameMsg_PostMessage_Params& params); |
| 783 void OnCommitNavigation(const ResourceResponseHead& response, | 784 void OnCommitNavigation(const ResourceResponseHead& response, |
| 784 const GURL& stream_url, | 785 const GURL& stream_url, |
| 785 const CommonNavigationParams& common_params, | 786 const CommonNavigationParams& common_params, |
| 786 const RequestNavigationParams& request_params); | 787 const RequestNavigationParams& request_params); |
| 787 void OnFailedNavigation(const CommonNavigationParams& common_params, | 788 void OnFailedNavigation(const CommonNavigationParams& common_params, |
| 788 const RequestNavigationParams& request_params, | 789 const RequestNavigationParams& request_params, |
| 789 bool has_stale_copy_in_cache, | 790 bool has_stale_copy_in_cache, |
| (...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1215 FrameBlameContext* blame_context_; // Not owned. | 1216 FrameBlameContext* blame_context_; // Not owned. |
| 1216 | 1217 |
| 1217 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1218 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1218 | 1219 |
| 1219 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1220 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1220 }; | 1221 }; |
| 1221 | 1222 |
| 1222 } // namespace content | 1223 } // namespace content |
| 1223 | 1224 |
| 1224 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1225 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |