| 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 745 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 756 int id, | 756 int id, |
| 757 bool notify_result, | 757 bool notify_result, |
| 758 int world_id); | 758 int world_id); |
| 759 void OnVisualStateRequest(uint64_t key); | 759 void OnVisualStateRequest(uint64_t key); |
| 760 void OnSetEditableSelectionOffsets(int start, int end); | 760 void OnSetEditableSelectionOffsets(int start, int end); |
| 761 void OnSetCompositionFromExistingText( | 761 void OnSetCompositionFromExistingText( |
| 762 int start, int end, | 762 int start, int end, |
| 763 const std::vector<blink::WebCompositionUnderline>& underlines); | 763 const std::vector<blink::WebCompositionUnderline>& underlines); |
| 764 void OnExecuteNoValueEditCommand(const std::string& name); | 764 void OnExecuteNoValueEditCommand(const std::string& name); |
| 765 void OnExtendSelectionAndDelete(int before, int after); | 765 void OnExtendSelectionAndDelete(int before, int after); |
| 766 void OnReload(bool ignore_cache); | 766 void OnReload(bool bypass_cache); |
| 767 void OnReloadLoFiImages(); | 767 void OnReloadLoFiImages(); |
| 768 void OnTextSurroundingSelectionRequest(uint32_t max_length); | 768 void OnTextSurroundingSelectionRequest(uint32_t max_length); |
| 769 void OnSetAccessibilityMode(AccessibilityMode new_mode); | 769 void OnSetAccessibilityMode(AccessibilityMode new_mode); |
| 770 void OnSnapshotAccessibilityTree(int callback_id); | 770 void OnSnapshotAccessibilityTree(int callback_id); |
| 771 void OnUpdateOpener(int opener_routing_id); | 771 void OnUpdateOpener(int opener_routing_id); |
| 772 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags); | 772 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags); |
| 773 void OnSetFrameOwnerProperties( | 773 void OnSetFrameOwnerProperties( |
| 774 const blink::WebFrameOwnerProperties& frame_owner_properties); | 774 const blink::WebFrameOwnerProperties& frame_owner_properties); |
| 775 void OnAdvanceFocus(blink::WebFocusType type, int32_t source_routing_id); | 775 void OnAdvanceFocus(blink::WebFocusType type, int32_t source_routing_id); |
| 776 void OnSetFocusedFrame(); | 776 void OnSetFocusedFrame(); |
| (...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1210 FrameBlameContext* blame_context_; // Not owned. | 1210 FrameBlameContext* blame_context_; // Not owned. |
| 1211 | 1211 |
| 1212 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1212 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1213 | 1213 |
| 1214 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1214 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1215 }; | 1215 }; |
| 1216 | 1216 |
| 1217 } // namespace content | 1217 } // namespace content |
| 1218 | 1218 |
| 1219 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1219 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |