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

Side by Side Diff: content/browser/renderer_host/render_widget_host_view_mus.cc

Issue 2164483006: [MacViews] Implemented text context menu (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ditto Created 4 years, 5 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 #include "content/browser/renderer_host/render_widget_host_view_mus.h" 5 #include "content/browser/renderer_host/render_widget_host_view_mus.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "build/build_config.h" 9 #include "build/build_config.h"
10 #include "components/mus/public/cpp/window.h" 10 #include "components/mus/public/cpp/window.h"
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 return nullptr; 270 return nullptr;
271 } 271 }
272 272
273 void RenderWidgetHostViewMus::SetActive(bool active) { 273 void RenderWidgetHostViewMus::SetActive(bool active) {
274 } 274 }
275 275
276 void RenderWidgetHostViewMus::ShowDefinitionForSelection() { 276 void RenderWidgetHostViewMus::ShowDefinitionForSelection() {
277 // TODO(fsamuel): Implement this on Mac. 277 // TODO(fsamuel): Implement this on Mac.
278 } 278 }
279 279
280 bool RenderWidgetHostViewMus::SupportsSpeech() const {
281 // TODO(fsamuel): Implement this on mac.
282 return false;
283 }
284
285 void RenderWidgetHostViewMus::SpeakSelection() { 280 void RenderWidgetHostViewMus::SpeakSelection() {
286 // TODO(fsamuel): Implement this on Mac. 281 // TODO(fsamuel): Implement this on Mac.
287 } 282 }
288 283
289 bool RenderWidgetHostViewMus::IsSpeaking() const {
290 // TODO(fsamuel): Implement this on Mac.
291 return false;
292 }
293
294 void RenderWidgetHostViewMus::StopSpeaking() {
295 // TODO(fsamuel): Implement this on Mac.
296 }
297 #endif // defined(OS_MACOSX) 284 #endif // defined(OS_MACOSX)
298 285
299 void RenderWidgetHostViewMus::LockCompositingSurface() { 286 void RenderWidgetHostViewMus::LockCompositingSurface() {
300 NOTIMPLEMENTED(); 287 NOTIMPLEMENTED();
301 } 288 }
302 289
303 void RenderWidgetHostViewMus::UnlockCompositingSurface() { 290 void RenderWidgetHostViewMus::UnlockCompositingSurface() {
304 NOTIMPLEMENTED(); 291 NOTIMPLEMENTED();
305 } 292 }
306 293
307 } // namespace content 294 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698