| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef UI_ACCESSIBILITY_AX_NODE_DATA_H_ | 5 #ifndef UI_ACCESSIBILITY_AX_NODE_DATA_H_ |
| 6 #define UI_ACCESSIBILITY_AX_NODE_DATA_H_ | 6 #define UI_ACCESSIBILITY_AX_NODE_DATA_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| 11 #include <string> | 11 #include <string> |
| 12 #include <vector> | 12 #include <vector> |
| 13 | 13 |
| 14 #include "base/memory/scoped_ptr.h" |
| 14 #include "base/strings/string16.h" | 15 #include "base/strings/string16.h" |
| 15 #include "base/strings/string_split.h" | 16 #include "base/strings/string_split.h" |
| 16 #include "ui/accessibility/ax_enums.h" | 17 #include "ui/accessibility/ax_enums.h" |
| 17 #include "ui/accessibility/ax_export.h" | 18 #include "ui/accessibility/ax_export.h" |
| 18 #include "ui/gfx/geometry/rect.h" | 19 #include "ui/gfx/geometry/rect.h" |
| 19 | 20 |
| 20 namespace gfx { | 21 namespace gfx { |
| 21 class Transform; | 22 class Transform; |
| 22 }; | 23 }; |
| 23 | 24 |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 // NOTE: this member is a scoped_ptr because it's rare and gfx::Transform | 123 // NOTE: this member is a scoped_ptr because it's rare and gfx::Transform |
| 123 // takes up a fair amount of space. The assignment operator and copy | 124 // takes up a fair amount of space. The assignment operator and copy |
| 124 // constructor both make a duplicate of the owned pointer, so it acts more | 125 // constructor both make a duplicate of the owned pointer, so it acts more |
| 125 // like a member than a pointer. | 126 // like a member than a pointer. |
| 126 scoped_ptr<gfx::Transform> transform; | 127 scoped_ptr<gfx::Transform> transform; |
| 127 }; | 128 }; |
| 128 | 129 |
| 129 } // namespace ui | 130 } // namespace ui |
| 130 | 131 |
| 131 #endif // UI_ACCESSIBILITY_AX_NODE_DATA_H_ | 132 #endif // UI_ACCESSIBILITY_AX_NODE_DATA_H_ |
| OLD | NEW |