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

Unified Diff: ui/accessibility/platform/ax_platform_node_auralinux.h

Issue 1010083006: Implement AtkComponent interface for chrome UI. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: incorporating comments Created 5 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/accessibility/platform/ax_platform_node_auralinux.h
diff --git a/ui/accessibility/platform/ax_platform_node_auralinux.h b/ui/accessibility/platform/ax_platform_node_auralinux.h
index 8f86bc71d8d2bdfd9d377e3a064dc8a31a56f99a..2da84d8424b981228296910b7a1eef1901b9be3e 100644
--- a/ui/accessibility/platform/ax_platform_node_auralinux.h
+++ b/ui/accessibility/platform/ax_platform_node_auralinux.h
@@ -25,6 +25,10 @@ class AXPlatformNodeAuraLinux : public AXPlatformNodeBase {
AtkRole GetAtkRole();
void GetAtkState(AtkStateSet* state_set);
void GetAtkRelations(AtkRelationSet* atk_relation_set);
+ void GetExtents(gint* x, gint* y, gint* width, gint* height,
+ AtkCoordType coord_type);
+ void GetPosition(gint* x, gint* y, AtkCoordType coord_type);
+ void GetSize(gint* width, gint* height);
// AXPlatformNode overrides.
void Destroy() override;
@@ -45,6 +49,8 @@ class AXPlatformNodeAuraLinux : public AXPlatformNodeBase {
// top-level windows.
static AXPlatformNode* application_;
+ gfx::Rect GetWindowCoords();
+
DISALLOW_COPY_AND_ASSIGN(AXPlatformNodeAuraLinux);
};

Powered by Google App Engine
This is Rietveld 408576698