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

Unified Diff: content/browser/frame_host/render_widget_host_view_guest.cc

Issue 2164483006: [MacViews] Implemented text context menu (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed msw's comments, changed 2016 to 2017 Created 3 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/frame_host/render_widget_host_view_guest.cc
diff --git a/content/browser/frame_host/render_widget_host_view_guest.cc b/content/browser/frame_host/render_widget_host_view_guest.cc
index 2b9f1e3ed1be83b5c73eeeaa12f313ad59e12d4d..50f4aaccd1b7d5ecaf76a5398b5454fac303ae94 100644
--- a/content/browser/frame_host/render_widget_host_view_guest.cc
+++ b/content/browser/frame_host/render_widget_host_view_guest.cc
@@ -471,21 +471,10 @@ void RenderWidgetHostViewGuest::ShowDefinitionForSelection() {
helper.ShowDefinitionForSelection();
}
-bool RenderWidgetHostViewGuest::SupportsSpeech() const {
- return platform_view_->SupportsSpeech();
-}
-
void RenderWidgetHostViewGuest::SpeakSelection() {
nasko 2017/01/31 15:37:29 Why does this method stay around and the others ar
spqchan 2017/02/01 00:32:39 In Mac, there is a menu item in the main menu that
platform_view_->SpeakSelection();
}
-bool RenderWidgetHostViewGuest::IsSpeaking() const {
- return platform_view_->IsSpeaking();
-}
-
-void RenderWidgetHostViewGuest::StopSpeaking() {
- platform_view_->StopSpeaking();
-}
#endif // defined(OS_MACOSX)
void RenderWidgetHostViewGuest::LockCompositingSurface() {

Powered by Google App Engine
This is Rietveld 408576698