| 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 753 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 764 int id, | 764 int id, |
| 765 bool notify_result, | 765 bool notify_result, |
| 766 int world_id); | 766 int world_id); |
| 767 void OnVisualStateRequest(uint64_t key); | 767 void OnVisualStateRequest(uint64_t key); |
| 768 void OnSetEditableSelectionOffsets(int start, int end); | 768 void OnSetEditableSelectionOffsets(int start, int end); |
| 769 void OnSetCompositionFromExistingText( | 769 void OnSetCompositionFromExistingText( |
| 770 int start, int end, | 770 int start, int end, |
| 771 const std::vector<blink::WebCompositionUnderline>& underlines); | 771 const std::vector<blink::WebCompositionUnderline>& underlines); |
| 772 void OnExecuteNoValueEditCommand(const std::string& name); | 772 void OnExecuteNoValueEditCommand(const std::string& name); |
| 773 void OnExtendSelectionAndDelete(int before, int after); | 773 void OnExtendSelectionAndDelete(int before, int after); |
| 774 void OnDeleteSurroundingText(int before, int after); |
| 774 void OnReload(bool bypass_cache); | 775 void OnReload(bool bypass_cache); |
| 775 void OnReloadLoFiImages(); | 776 void OnReloadLoFiImages(); |
| 776 void OnTextSurroundingSelectionRequest(uint32_t max_length); | 777 void OnTextSurroundingSelectionRequest(uint32_t max_length); |
| 777 void OnSetAccessibilityMode(AccessibilityMode new_mode); | 778 void OnSetAccessibilityMode(AccessibilityMode new_mode); |
| 778 void OnSnapshotAccessibilityTree(int callback_id); | 779 void OnSnapshotAccessibilityTree(int callback_id); |
| 779 void OnUpdateOpener(int opener_routing_id); | 780 void OnUpdateOpener(int opener_routing_id); |
| 780 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags); | 781 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags); |
| 781 void OnSetFrameOwnerProperties( | 782 void OnSetFrameOwnerProperties( |
| 782 const blink::WebFrameOwnerProperties& frame_owner_properties); | 783 const blink::WebFrameOwnerProperties& frame_owner_properties); |
| 783 void OnAdvanceFocus(blink::WebFocusType type, int32_t source_routing_id); | 784 void OnAdvanceFocus(blink::WebFocusType type, int32_t source_routing_id); |
| (...skipping 443 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1227 FrameBlameContext* blame_context_; // Not owned. | 1228 FrameBlameContext* blame_context_; // Not owned. |
| 1228 | 1229 |
| 1229 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1230 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1230 | 1231 |
| 1231 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1232 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1232 }; | 1233 }; |
| 1233 | 1234 |
| 1234 } // namespace content | 1235 } // namespace content |
| 1235 | 1236 |
| 1236 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1237 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |