| 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 780 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 791 void OnReloadLoFiImages(); | 791 void OnReloadLoFiImages(); |
| 792 void OnTextSurroundingSelectionRequest(uint32_t max_length); | 792 void OnTextSurroundingSelectionRequest(uint32_t max_length); |
| 793 void OnSetAccessibilityMode(AccessibilityMode new_mode); | 793 void OnSetAccessibilityMode(AccessibilityMode new_mode); |
| 794 void OnSnapshotAccessibilityTree(int callback_id); | 794 void OnSnapshotAccessibilityTree(int callback_id); |
| 795 void OnUpdateOpener(int opener_routing_id); | 795 void OnUpdateOpener(int opener_routing_id); |
| 796 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags); | 796 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags); |
| 797 void OnSetFrameOwnerProperties( | 797 void OnSetFrameOwnerProperties( |
| 798 const blink::WebFrameOwnerProperties& frame_owner_properties); | 798 const blink::WebFrameOwnerProperties& frame_owner_properties); |
| 799 void OnAdvanceFocus(blink::WebFocusType type, int32_t source_routing_id); | 799 void OnAdvanceFocus(blink::WebFocusType type, int32_t source_routing_id); |
| 800 void OnSetFocusedFrame(); | 800 void OnSetFocusedFrame(); |
| 801 void OnClearFocusedFrame(); |
| 801 void OnTextTrackSettingsChanged( | 802 void OnTextTrackSettingsChanged( |
| 802 const FrameMsg_TextTrackSettings_Params& params); | 803 const FrameMsg_TextTrackSettings_Params& params); |
| 803 void OnPostMessageEvent(const FrameMsg_PostMessage_Params& params); | 804 void OnPostMessageEvent(const FrameMsg_PostMessage_Params& params); |
| 804 void OnCommitNavigation(const ResourceResponseHead& response, | 805 void OnCommitNavigation(const ResourceResponseHead& response, |
| 805 const GURL& stream_url, | 806 const GURL& stream_url, |
| 806 const CommonNavigationParams& common_params, | 807 const CommonNavigationParams& common_params, |
| 807 const RequestNavigationParams& request_params); | 808 const RequestNavigationParams& request_params); |
| 808 void OnFailedNavigation(const CommonNavigationParams& common_params, | 809 void OnFailedNavigation(const CommonNavigationParams& common_params, |
| 809 const RequestNavigationParams& request_params, | 810 const RequestNavigationParams& request_params, |
| 810 bool has_stale_copy_in_cache, | 811 bool has_stale_copy_in_cache, |
| (...skipping 440 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1251 #endif | 1252 #endif |
| 1252 | 1253 |
| 1253 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1254 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1254 | 1255 |
| 1255 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1256 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1256 }; | 1257 }; |
| 1257 | 1258 |
| 1258 } // namespace content | 1259 } // namespace content |
| 1259 | 1260 |
| 1260 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1261 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |