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

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

Issue 13770015: Rename confusing child_id to unique_id_win (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Addressed feedback Created 7 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
« no previous file with comments | « no previous file | content/browser/accessibility/browser_accessibility.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/accessibility/browser_accessibility.h
diff --git a/content/browser/accessibility/browser_accessibility.h b/content/browser/accessibility/browser_accessibility.h
index 62fff556c75cb0f8325fe793638505d8476b2deb..dad3c339bb1d20c47b279a18c9fcdda209cdc5bb 100644
--- a/content/browser/accessibility/browser_accessibility.h
+++ b/content/browser/accessibility/browser_accessibility.h
@@ -70,7 +70,6 @@ class CONTENT_EXPORT BrowserAccessibility {
void InitializeTreeStructure(
BrowserAccessibilityManager* manager,
BrowserAccessibility* parent,
- int32 child_id,
int32 renderer_id,
int32 index_in_parent);
@@ -150,7 +149,6 @@ class CONTENT_EXPORT BrowserAccessibility {
return string_attributes_;
}
- int32 child_id() const { return child_id_; }
const std::vector<BrowserAccessibility*>& children() const {
return children_;
}
@@ -253,9 +251,6 @@ class CONTENT_EXPORT BrowserAccessibility {
// The parent of this object, may be NULL if we're the root object.
BrowserAccessibility* parent_;
- // The ID of this object; globally unique within the browser process.
- int32 child_id_;
-
// The index of this within its parent object.
int32 index_in_parent_;
« no previous file with comments | « no previous file | content/browser/accessibility/browser_accessibility.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698