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

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

Issue 267563003: Allow browser process to request selection of word around caret (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: cleanup Created 6 years, 7 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
« no previous file with comments | « content/public/browser/render_view_host.h ('k') | content/renderer/render_view_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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_VIEW_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
7 7
8 #include <deque> 8 #include <deque>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 766 matching lines...) Expand 10 before | Expand all | Expand 10 after
777 void OnStopFinding(StopFindAction action); 777 void OnStopFinding(StopFindAction action);
778 void OnSuppressDialogsUntilSwapOut(); 778 void OnSuppressDialogsUntilSwapOut();
779 void OnThemeChanged(); 779 void OnThemeChanged();
780 void OnUpdateTargetURLAck(); 780 void OnUpdateTargetURLAck();
781 void OnUpdateWebPreferences(const WebPreferences& prefs); 781 void OnUpdateWebPreferences(const WebPreferences& prefs);
782 void OnZoom(PageZoom zoom); 782 void OnZoom(PageZoom zoom);
783 void OnEnableViewSourceMode(); 783 void OnEnableViewSourceMode();
784 void OnDisownOpener(); 784 void OnDisownOpener();
785 void OnWindowSnapshotCompleted(const int snapshot_id, 785 void OnWindowSnapshotCompleted(const int snapshot_id,
786 const gfx::Size& size, const std::vector<unsigned char>& png); 786 const gfx::Size& size, const std::vector<unsigned char>& png);
787 void OnSelectWordAroundCaret();
787 #if defined(OS_ANDROID) 788 #if defined(OS_ANDROID)
788 void OnActivateNearestFindResult(int request_id, float x, float y); 789 void OnActivateNearestFindResult(int request_id, float x, float y);
789 void OnFindMatchRects(int current_version); 790 void OnFindMatchRects(int current_version);
790 void OnSelectPopupMenuItems(bool canceled, 791 void OnSelectPopupMenuItems(bool canceled,
791 const std::vector<int>& selected_indices); 792 const std::vector<int>& selected_indices);
792 void OnUndoScrollFocusedEditableNodeIntoRect(); 793 void OnUndoScrollFocusedEditableNodeIntoRect();
793 void OnUpdateTopControlsState(bool enable_hiding, 794 void OnUpdateTopControlsState(bool enable_hiding,
794 bool enable_showing, 795 bool enable_showing,
795 bool animate); 796 bool animate);
796 void OnPauseVideo(); 797 void OnPauseVideo();
(...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after
1239 // use the Observer interface to filter IPC messages and receive frame change 1240 // use the Observer interface to filter IPC messages and receive frame change
1240 // notifications. 1241 // notifications.
1241 // --------------------------------------------------------------------------- 1242 // ---------------------------------------------------------------------------
1242 1243
1243 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1244 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1244 }; 1245 };
1245 1246
1246 } // namespace content 1247 } // namespace content
1247 1248
1248 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1249 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW
« no previous file with comments | « content/public/browser/render_view_host.h ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698