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

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: window coords 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..96f36aedb91b5d53bb21a1b3f06fc4e6cac9a355 100644
--- a/ui/accessibility/platform/ax_platform_node_auralinux.h
+++ b/ui/accessibility/platform/ax_platform_node_auralinux.h
@@ -25,6 +25,11 @@ 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);
+ gfx::Rect GetWindowCoords();
dmazzoni 2015/03/27 19:09:15 This should be private. Move it down under the pri
// AXPlatformNode overrides.
void Destroy() override;

Powered by Google App Engine
This is Rietveld 408576698