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

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

Issue 342143004: Defect 248426: Speak rendered text when no selection is made on Mac (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added a comment for TTS handler in render_widget_host_view_mac Created 6 years, 4 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/common/view_messages.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 730 matching lines...) Expand 10 before | Expand all | Expand 10 after
741 void OnActivateNearestFindResult(int request_id, float x, float y); 741 void OnActivateNearestFindResult(int request_id, float x, float y);
742 void OnFindMatchRects(int current_version); 742 void OnFindMatchRects(int current_version);
743 void OnSelectPopupMenuItems(bool canceled, 743 void OnSelectPopupMenuItems(bool canceled,
744 const std::vector<int>& selected_indices); 744 const std::vector<int>& selected_indices);
745 void OnUndoScrollFocusedEditableNodeIntoRect(); 745 void OnUndoScrollFocusedEditableNodeIntoRect();
746 void OnUpdateTopControlsState(bool enable_hiding, 746 void OnUpdateTopControlsState(bool enable_hiding,
747 bool enable_showing, 747 bool enable_showing,
748 bool animate); 748 bool animate);
749 void OnExtractSmartClipData(const gfx::Rect& rect); 749 void OnExtractSmartClipData(const gfx::Rect& rect);
750 #elif defined(OS_MACOSX) 750 #elif defined(OS_MACOSX)
751 void OnGetRenderedText();
751 void OnPluginImeCompositionCompleted(const base::string16& text, 752 void OnPluginImeCompositionCompleted(const base::string16& text,
752 int plugin_id); 753 int plugin_id);
753 void OnSelectPopupMenuItem(int selected_index); 754 void OnSelectPopupMenuItem(int selected_index);
754 void OnSetInLiveResize(bool in_live_resize); 755 void OnSetInLiveResize(bool in_live_resize);
755 void OnSetWindowVisibility(bool visible); 756 void OnSetWindowVisibility(bool visible);
756 void OnWindowFrameChanged(const gfx::Rect& window_frame, 757 void OnWindowFrameChanged(const gfx::Rect& window_frame,
757 const gfx::Rect& view_frame); 758 const gfx::Rect& view_frame);
758 #endif 759 #endif
759 760
760 // Adding a new message handler? Please add it in alphabetical order above 761 // Adding a new message handler? Please add it in alphabetical order above
(...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after
1146 // use the Observer interface to filter IPC messages and receive frame change 1147 // use the Observer interface to filter IPC messages and receive frame change
1147 // notifications. 1148 // notifications.
1148 // --------------------------------------------------------------------------- 1149 // ---------------------------------------------------------------------------
1149 1150
1150 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1151 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1151 }; 1152 };
1152 1153
1153 } // namespace content 1154 } // namespace content
1154 1155
1155 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1156 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW
« no previous file with comments | « content/common/view_messages.h ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698