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

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

Issue 657803002: Update touch selection to only modify one selection point at a time. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years, 1 month 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
« no previous file with comments | « content/common/view_messages.h ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 523 matching lines...) Expand 10 before | Expand all | Expand 10 after
534 void OnCustomContextMenuAction(const CustomContextMenuContext& custom_context, 534 void OnCustomContextMenuAction(const CustomContextMenuContext& custom_context,
535 unsigned action); 535 unsigned action);
536 void OnUndo(); 536 void OnUndo();
537 void OnRedo(); 537 void OnRedo();
538 void OnCut(); 538 void OnCut();
539 void OnCopy(); 539 void OnCopy();
540 void OnPaste(); 540 void OnPaste();
541 void OnPasteAndMatchStyle(); 541 void OnPasteAndMatchStyle();
542 void OnDelete(); 542 void OnDelete();
543 void OnSelectAll(); 543 void OnSelectAll();
544 void OnSelectRange(const gfx::Point& start, const gfx::Point& end); 544 void OnSelectRange(const gfx::Point& base, const gfx::Point& extent);
545 void OnUnselect(); 545 void OnUnselect();
546 void OnMoveRangeSelectionExtent(const gfx::Point& point);
546 void OnReplace(const base::string16& text); 547 void OnReplace(const base::string16& text);
547 void OnReplaceMisspelling(const base::string16& text); 548 void OnReplaceMisspelling(const base::string16& text);
548 void OnCSSInsertRequest(const std::string& css); 549 void OnCSSInsertRequest(const std::string& css);
549 void OnJavaScriptExecuteRequest(const base::string16& javascript, 550 void OnJavaScriptExecuteRequest(const base::string16& javascript,
550 int id, 551 int id,
551 bool notify_result); 552 bool notify_result);
552 void OnJavaScriptExecuteRequestForTests(const base::string16& javascript, 553 void OnJavaScriptExecuteRequestForTests(const base::string16& javascript,
553 int id, 554 int id,
554 bool notify_result); 555 bool notify_result);
555 void OnSetEditableSelectionOffsets(int start, int end); 556 void OnSetEditableSelectionOffsets(int start, int end);
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
798 #endif 799 #endif
799 800
800 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 801 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
801 802
802 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 803 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
803 }; 804 };
804 805
805 } // namespace content 806 } // namespace content
806 807
807 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 808 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW
« no previous file with comments | « content/common/view_messages.h ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698