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

Unified Diff: ui/views/accessibility/native_view_accessibility_base.cc

Issue 2795543002: Add GetScreenBoundsRect to ui::AXPlatformNodeDelegate (Closed)
Patch Set: Created 3 years, 9 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: ui/views/accessibility/native_view_accessibility_base.cc
diff --git a/ui/views/accessibility/native_view_accessibility_base.cc b/ui/views/accessibility/native_view_accessibility_base.cc
index 524419bcb8df0948469cf16e36023dbad0791d62..2617e2d1a31b872d21c266007fc205b7e6ea18bf 100644
--- a/ui/views/accessibility/native_view_accessibility_base.cc
+++ b/ui/views/accessibility/native_view_accessibility_base.cc
@@ -126,6 +126,11 @@ gfx::Vector2d NativeViewAccessibilityBase::GetGlobalCoordinateOffset() {
return gfx::Vector2d(0, 0); // location is already in screen coordinates.
}
+gfx::Rect NativeViewAccessibilityBase::GetScreenBoundsRect() const {
+ NOTREACHED();
+ return gfx::Rect(0, 0, 0, 0);
+}
+
gfx::NativeViewAccessible NativeViewAccessibilityBase::HitTestSync(int x,
int y) {
if (!view_ || !view_->GetWidget())

Powered by Google App Engine
This is Rietveld 408576698