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

Unified Diff: ui/accessibility/ax_node.cc

Issue 851853002: It is time. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Trying to reup because the last upload failed. Created 5 years, 11 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 | « ui/accessibility/ax_node.h ('k') | ui/accessibility/ax_node_data.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/accessibility/ax_node.cc
diff --git a/ui/accessibility/ax_node.cc b/ui/accessibility/ax_node.cc
deleted file mode 100644
index 587f7375d749efb7ef0eeef2dca60b3283021eea..0000000000000000000000000000000000000000
--- a/ui/accessibility/ax_node.cc
+++ /dev/null
@@ -1,47 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "ui/accessibility/ax_node.h"
-
-namespace ui {
-
-AXNode::AXNode(AXNode* parent, int32 id, int32 index_in_parent)
- : index_in_parent_(index_in_parent),
- parent_(parent) {
- data_.id = id;
-}
-
-AXNode::~AXNode() {
-}
-
-void AXNode::SetData(const AXNodeData& src) {
- data_ = src;
-}
-
-void AXNode::SetLocation(const gfx::Rect& new_location) {
- data_.location = new_location;
-}
-
-void AXNode::SetIndexInParent(int index_in_parent) {
- index_in_parent_ = index_in_parent;
-}
-
-void AXNode::SwapChildren(std::vector<AXNode*>& children) {
- children.swap(children_);
-}
-
-void AXNode::Destroy() {
- delete this;
-}
-
-bool AXNode::IsDescendantOf(AXNode* ancestor) {
- if (this == ancestor)
- return true;
- else if (parent())
- return parent()->IsDescendantOf(ancestor);
-
- return false;
-}
-
-} // namespace ui
« no previous file with comments | « ui/accessibility/ax_node.h ('k') | ui/accessibility/ax_node_data.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698