| 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 855 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 866 bool notify_result, | 866 bool notify_result, |
| 867 int world_id); | 867 int world_id); |
| 868 void OnVisualStateRequest(uint64_t key); | 868 void OnVisualStateRequest(uint64_t key); |
| 869 void OnSetEditableSelectionOffsets(int start, int end); | 869 void OnSetEditableSelectionOffsets(int start, int end); |
| 870 void OnSetCompositionFromExistingText( | 870 void OnSetCompositionFromExistingText( |
| 871 int start, int end, | 871 int start, int end, |
| 872 const std::vector<blink::WebCompositionUnderline>& underlines); | 872 const std::vector<blink::WebCompositionUnderline>& underlines); |
| 873 void OnExecuteNoValueEditCommand(const std::string& name); | 873 void OnExecuteNoValueEditCommand(const std::string& name); |
| 874 void OnExtendSelectionAndDelete(int before, int after); | 874 void OnExtendSelectionAndDelete(int before, int after); |
| 875 void OnDeleteSurroundingText(int before, int after); | 875 void OnDeleteSurroundingText(int before, int after); |
| 876 void OnDeleteSurroundingTextInCodePoints(int before, int after); |
| 876 void OnReload(bool bypass_cache); | 877 void OnReload(bool bypass_cache); |
| 877 void OnReloadLoFiImages(); | 878 void OnReloadLoFiImages(); |
| 878 void OnTextSurroundingSelectionRequest(uint32_t max_length); | 879 void OnTextSurroundingSelectionRequest(uint32_t max_length); |
| 879 void OnSetAccessibilityMode(AccessibilityMode new_mode); | 880 void OnSetAccessibilityMode(AccessibilityMode new_mode); |
| 880 void OnSnapshotAccessibilityTree(int callback_id); | 881 void OnSnapshotAccessibilityTree(int callback_id); |
| 881 void OnExtractSmartClipData(uint32_t callback_id, const gfx::Rect& rect); | 882 void OnExtractSmartClipData(uint32_t callback_id, const gfx::Rect& rect); |
| 882 void OnUpdateOpener(int opener_routing_id); | 883 void OnUpdateOpener(int opener_routing_id); |
| 883 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags); | 884 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags); |
| 884 void OnSetFrameOwnerProperties( | 885 void OnSetFrameOwnerProperties( |
| 885 const FrameOwnerProperties& frame_owner_properties); | 886 const FrameOwnerProperties& frame_owner_properties); |
| (...skipping 510 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1396 int enabled_bindings_ = 0; | 1397 int enabled_bindings_ = 0; |
| 1397 | 1398 |
| 1398 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1399 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1399 | 1400 |
| 1400 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1401 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1401 }; | 1402 }; |
| 1402 | 1403 |
| 1403 } // namespace content | 1404 } // namespace content |
| 1404 | 1405 |
| 1405 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1406 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |