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

Unified Diff: ui/accessibility/ax_serializable_tree.cc

Issue 1550483002: Switch to standard integer types in ui/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@int-ui-events
Patch Set: Created 5 years 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_data.cc ('k') | ui/accessibility/ax_text_utils.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/accessibility/ax_serializable_tree.cc
diff --git a/ui/accessibility/ax_serializable_tree.cc b/ui/accessibility/ax_serializable_tree.cc
index c5542c95ab06df1f589455fa508acb882e34dfd2..9244c7f75c2f976316b6b12587fe3604a6c05df8 100644
--- a/ui/accessibility/ax_serializable_tree.cc
+++ b/ui/accessibility/ax_serializable_tree.cc
@@ -4,6 +4,8 @@
#include "ui/accessibility/ax_serializable_tree.h"
+#include <stdint.h>
+
#include "ui/accessibility/ax_node.h"
namespace ui {
@@ -25,9 +27,9 @@ class AX_EXPORT AXTreeSourceAdapter
AXNode* GetRoot() const override { return tree_->root(); }
- AXNode* GetFromId(int32 id) const override { return tree_->GetFromId(id); }
+ AXNode* GetFromId(int32_t id) const override { return tree_->GetFromId(id); }
- int32 GetId(const AXNode* node) const override { return node->id(); }
+ int32_t GetId(const AXNode* node) const override { return node->id(); }
void GetChildren(const AXNode* node,
std::vector<const AXNode*>* out_children) const override {
« no previous file with comments | « ui/accessibility/ax_node_data.cc ('k') | ui/accessibility/ax_text_utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698