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

Unified Diff: ui/views/accessibility/ax_view_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_view_obj_wrapper.cc
diff --git a/ui/views/accessibility/ax_view_obj_wrapper.cc b/ui/views/accessibility/ax_view_obj_wrapper.cc
index c2bff9104deeaaf0a57a4bea93f13357fc9b8802..4363d19dc71c5de9a9bcbb0239d27afdf139038d 100644
--- a/ui/views/accessibility/ax_view_obj_wrapper.cc
+++ b/ui/views/accessibility/ax_view_obj_wrapper.cc
@@ -73,7 +73,7 @@ void AXViewObjWrapper::Serialize(ui::AXNodeData* out_node_data) {
}
}
-int32 AXViewObjWrapper::GetID() {
+int32_t AXViewObjWrapper::GetID() {
return AXAuraObjCache::GetInstance()->GetID(view_);
}
@@ -96,7 +96,7 @@ void AXViewObjWrapper::MakeVisible() {
// TODO(dtseng): Implement.
}
-void AXViewObjWrapper::SetSelection(int32 start, int32 end) {
+void AXViewObjWrapper::SetSelection(int32_t start, int32_t end) {
// TODO(dtseng): Implement.
}

Powered by Google App Engine
This is Rietveld 408576698