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

Unified Diff: content/public/browser/render_widget_host_view.h

Issue 2164483006: [MacViews] Implemented text context menu (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix for tapted 3 Created 4 years 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 side-by-side diff with in-line comments
Download patch
Index: content/public/browser/render_widget_host_view.h
diff --git a/content/public/browser/render_widget_host_view.h b/content/public/browser/render_widget_host_view.h
index 0ffc680274090790019237a898851c0e5009c907..2a94cc31666cb6fba228b2c75717e01b9f51c1c5 100644
--- a/content/public/browser/render_widget_host_view.h
+++ b/content/public/browser/render_widget_host_view.h
@@ -185,14 +185,9 @@ class CONTENT_EXPORT RenderWidgetHostView {
// Brings up the dictionary showing a definition for the selected text.
virtual void ShowDefinitionForSelection() = 0;
- // Returns |true| if Mac OS X text to speech is supported.
- virtual bool SupportsSpeech() const = 0;
// Tells the view to speak the currently selected text.
tapted 2016/12/21 11:20:26 this comment should be updated to also say. "If th
spqchan 2016/12/21 22:00:13 Done.
virtual void SpeakSelection() = 0;
- // Returns |true| if text is currently being spoken by Mac OS X.
- virtual bool IsSpeaking() const = 0;
- // Stops speaking, if it is currently in progress.
- virtual void StopSpeaking() = 0;
+
#endif // defined(OS_MACOSX)
};

Powered by Google App Engine
This is Rietveld 408576698