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

Unified Diff: content/browser/accessibility/browser_accessibility.h

Issue 252253002: Implement initial support for nesting one ax tree in another. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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/accessibility/browser_accessibility.h
diff --git a/content/browser/accessibility/browser_accessibility.h b/content/browser/accessibility/browser_accessibility.h
index 17f70caf675fe7aa1a983d4e057d90e7d1f26f6e..72e46ee489b0e37690c86eb9888a51703f4dbff1 100644
--- a/content/browser/accessibility/browser_accessibility.h
+++ b/content/browser/accessibility/browser_accessibility.h
@@ -245,6 +245,9 @@ class CONTENT_EXPORT BrowserAccessibility {
// Append the text from this node and its children.
std::string GetTextRecursive() const;
+ // For an iframe element
David Tseng 2014/05/01 18:07:54 nit: period and perhaps "if this element is an ifr
dmazzoni 2014/05/05 07:17:57 Done.
+ void SetChildFrameId(int child_frame_id);
David Tseng 2014/05/01 18:07:54 nit: perhaps ID? Also, on a higher level, child f
dmazzoni 2014/05/05 07:17:57 Id is consistent with the rest of this file; I hav
+
protected:
BrowserAccessibility();
@@ -262,6 +265,8 @@ class CONTENT_EXPORT BrowserAccessibility {
std::string name_;
std::string value_;
+ int child_frame_id_;
David Tseng 2014/05/01 18:07:54 nit: did you want these sorted?
dmazzoni 2014/05/05 07:17:57 I don't want to sort unrelated fields.
+
private:
David Tseng 2014/05/01 18:07:54 nit: I think the above private: specifier suffices
dmazzoni 2014/05/05 07:17:57 Done.
DISALLOW_COPY_AND_ASSIGN(BrowserAccessibility);
};

Powered by Google App Engine
This is Rietveld 408576698