Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(51)

Side by Side Diff: content/renderer/render_frame_impl.h

Issue 1889053003: Fix InputConnection.deleteSurroundingText() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 799 matching lines...) Expand 10 before | Expand all | Expand 10 after
810 int id, 810 int id,
811 bool notify_result, 811 bool notify_result,
812 int world_id); 812 int world_id);
813 void OnVisualStateRequest(uint64_t key); 813 void OnVisualStateRequest(uint64_t key);
814 void OnSetEditableSelectionOffsets(int start, int end); 814 void OnSetEditableSelectionOffsets(int start, int end);
815 void OnSetCompositionFromExistingText( 815 void OnSetCompositionFromExistingText(
816 int start, int end, 816 int start, int end,
817 const std::vector<blink::WebCompositionUnderline>& underlines); 817 const std::vector<blink::WebCompositionUnderline>& underlines);
818 void OnExecuteNoValueEditCommand(const std::string& name); 818 void OnExecuteNoValueEditCommand(const std::string& name);
819 void OnExtendSelectionAndDelete(int before, int after); 819 void OnExtendSelectionAndDelete(int before, int after);
820 void OnDeleteSurroundingText(int before, int after);
820 void OnReload(bool bypass_cache); 821 void OnReload(bool bypass_cache);
821 void OnReloadLoFiImages(); 822 void OnReloadLoFiImages();
822 void OnTextSurroundingSelectionRequest(uint32_t max_length); 823 void OnTextSurroundingSelectionRequest(uint32_t max_length);
823 void OnSetAccessibilityMode(AccessibilityMode new_mode); 824 void OnSetAccessibilityMode(AccessibilityMode new_mode);
824 void OnSnapshotAccessibilityTree(int callback_id); 825 void OnSnapshotAccessibilityTree(int callback_id);
825 void OnUpdateOpener(int opener_routing_id); 826 void OnUpdateOpener(int opener_routing_id);
826 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags); 827 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags);
827 void OnSetFrameOwnerProperties( 828 void OnSetFrameOwnerProperties(
828 const FrameOwnerProperties& frame_owner_properties); 829 const FrameOwnerProperties& frame_owner_properties);
829 void OnAdvanceFocus(blink::WebFocusType type, int32_t source_routing_id); 830 void OnAdvanceFocus(blink::WebFocusType type, int32_t source_routing_id);
(...skipping 479 matching lines...) Expand 10 before | Expand all | Expand 10 after
1309 bool name_changed_before_first_commit_ = false; 1310 bool name_changed_before_first_commit_ = false;
1310 1311
1311 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 1312 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
1312 1313
1313 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 1314 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
1314 }; 1315 };
1315 1316
1316 } // namespace content 1317 } // namespace content
1317 1318
1318 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 1319 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698