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

Unified Diff: ui/views/accessibility/ax_widget_obj_wrapper.cc

Issue 1543173002: Switch to standard integer types in ui/views/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
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
Index: ui/views/accessibility/ax_widget_obj_wrapper.cc
diff --git a/ui/views/accessibility/ax_widget_obj_wrapper.cc b/ui/views/accessibility/ax_widget_obj_wrapper.cc
index 44fcfa8920276546617e7c713408dc52668a4f75..25183a8c22f9f806332a68ccc15af7f90e4dce6e 100644
--- a/ui/views/accessibility/ax_widget_obj_wrapper.cc
+++ b/ui/views/accessibility/ax_widget_obj_wrapper.cc
@@ -42,7 +42,7 @@ void AXWidgetObjWrapper::Serialize(ui::AXNodeData* out_node_data) {
out_node_data->state = 0;
}
-int32 AXWidgetObjWrapper::GetID() {
+int32_t AXWidgetObjWrapper::GetID() {
return AXAuraObjCache::GetInstance()->GetID(widget_);
}

Powered by Google App Engine
This is Rietveld 408576698