| 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 812 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 823 void OnReloadLoFiImages(); | 823 void OnReloadLoFiImages(); |
| 824 void OnTextSurroundingSelectionRequest(uint32_t max_length); | 824 void OnTextSurroundingSelectionRequest(uint32_t max_length); |
| 825 void OnSetAccessibilityMode(AccessibilityMode new_mode); | 825 void OnSetAccessibilityMode(AccessibilityMode new_mode); |
| 826 void OnSnapshotAccessibilityTree(int callback_id); | 826 void OnSnapshotAccessibilityTree(int callback_id); |
| 827 void OnUpdateOpener(int opener_routing_id); | 827 void OnUpdateOpener(int opener_routing_id); |
| 828 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags); | 828 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags); |
| 829 void OnSetFrameOwnerProperties( | 829 void OnSetFrameOwnerProperties( |
| 830 const FrameOwnerProperties& frame_owner_properties); | 830 const FrameOwnerProperties& frame_owner_properties); |
| 831 void OnAdvanceFocus(blink::WebFocusType type, int32_t source_routing_id); | 831 void OnAdvanceFocus(blink::WebFocusType type, int32_t source_routing_id); |
| 832 void OnSetFocusedFrame(); | 832 void OnSetFocusedFrame(); |
| 833 void OnClearFocusedFrame(); | |
| 834 void OnTextTrackSettingsChanged( | 833 void OnTextTrackSettingsChanged( |
| 835 const FrameMsg_TextTrackSettings_Params& params); | 834 const FrameMsg_TextTrackSettings_Params& params); |
| 836 void OnPostMessageEvent(const FrameMsg_PostMessage_Params& params); | 835 void OnPostMessageEvent(const FrameMsg_PostMessage_Params& params); |
| 837 void OnCommitNavigation(const ResourceResponseHead& response, | 836 void OnCommitNavigation(const ResourceResponseHead& response, |
| 838 const GURL& stream_url, | 837 const GURL& stream_url, |
| 839 const CommonNavigationParams& common_params, | 838 const CommonNavigationParams& common_params, |
| 840 const RequestNavigationParams& request_params); | 839 const RequestNavigationParams& request_params); |
| 841 void OnFailedNavigation(const CommonNavigationParams& common_params, | 840 void OnFailedNavigation(const CommonNavigationParams& common_params, |
| 842 const RequestNavigationParams& request_params, | 841 const RequestNavigationParams& request_params, |
| 843 bool has_stale_copy_in_cache, | 842 bool has_stale_copy_in_cache, |
| (...skipping 483 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1327 bool name_changed_before_first_commit_ = false; | 1326 bool name_changed_before_first_commit_ = false; |
| 1328 | 1327 |
| 1329 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1328 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1330 | 1329 |
| 1331 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1330 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1332 }; | 1331 }; |
| 1333 | 1332 |
| 1334 } // namespace content | 1333 } // namespace content |
| 1335 | 1334 |
| 1336 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1335 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |