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

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

Issue 2617443002: Implement ThreadedInputConnection.deleteSurroundingTextInCodePoints() (Closed)
Patch Set: Add some DCHECK Created 3 years, 10 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 854 matching lines...) Expand 10 before | Expand all | Expand 10 after
865 bool notify_result, 865 bool notify_result,
866 int world_id); 866 int world_id);
867 void OnVisualStateRequest(uint64_t key); 867 void OnVisualStateRequest(uint64_t key);
868 void OnSetEditableSelectionOffsets(int start, int end); 868 void OnSetEditableSelectionOffsets(int start, int end);
869 void OnSetCompositionFromExistingText( 869 void OnSetCompositionFromExistingText(
870 int start, int end, 870 int start, int end,
871 const std::vector<blink::WebCompositionUnderline>& underlines); 871 const std::vector<blink::WebCompositionUnderline>& underlines);
872 void OnExecuteNoValueEditCommand(const std::string& name); 872 void OnExecuteNoValueEditCommand(const std::string& name);
873 void OnExtendSelectionAndDelete(int before, int after); 873 void OnExtendSelectionAndDelete(int before, int after);
874 void OnDeleteSurroundingText(int before, int after); 874 void OnDeleteSurroundingText(int before, int after);
875 void OnDeleteSurroundingTextInCodePoints(int before, int after);
875 void OnReload(bool bypass_cache); 876 void OnReload(bool bypass_cache);
876 void OnReloadLoFiImages(); 877 void OnReloadLoFiImages();
877 void OnTextSurroundingSelectionRequest(uint32_t max_length); 878 void OnTextSurroundingSelectionRequest(uint32_t max_length);
878 void OnFocusedFormFieldDataRequest(int request_id); 879 void OnFocusedFormFieldDataRequest(int request_id);
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(
(...skipping 511 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698