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

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: Created 6 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 <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 508 matching lines...) Expand 10 before | Expand all | Expand 10 after
519 void OnUndo(); 519 void OnUndo();
520 void OnRedo(); 520 void OnRedo();
521 void OnCut(); 521 void OnCut();
522 void OnCopy(); 522 void OnCopy();
523 void OnPaste(); 523 void OnPaste();
524 void OnPasteAndMatchStyle(); 524 void OnPasteAndMatchStyle();
525 void OnDelete(); 525 void OnDelete();
526 void OnSelectAll(); 526 void OnSelectAll();
527 void OnSelectRange(const gfx::Point& start, const gfx::Point& end); 527 void OnSelectRange(const gfx::Point& start, const gfx::Point& end);
528 void OnUnselect(); 528 void OnUnselect();
529 void OnMoveSelectionExtent(const gfx::Point& point);
529 void OnReplace(const base::string16& text); 530 void OnReplace(const base::string16& text);
530 void OnReplaceMisspelling(const base::string16& text); 531 void OnReplaceMisspelling(const base::string16& text);
531 void OnCSSInsertRequest(const std::string& css); 532 void OnCSSInsertRequest(const std::string& css);
532 void OnJavaScriptExecuteRequest(const base::string16& javascript, 533 void OnJavaScriptExecuteRequest(const base::string16& javascript,
533 int id, 534 int id,
534 bool notify_result); 535 bool notify_result);
535 void OnJavaScriptExecuteRequestForTests(const base::string16& javascript, 536 void OnJavaScriptExecuteRequestForTests(const base::string16& javascript,
536 int id, 537 int id,
537 bool notify_result); 538 bool notify_result);
538 void OnSetEditableSelectionOffsets(int start, int end); 539 void OnSetEditableSelectionOffsets(int start, int end);
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
771 #endif 772 #endif
772 773
773 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 774 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
774 775
775 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 776 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
776 }; 777 };
777 778
778 } // namespace content 779 } // namespace content
779 780
780 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 781 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698