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

Unified Diff: ui/views/accessibility/ax_window_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_window_obj_wrapper.cc
diff --git a/ui/views/accessibility/ax_window_obj_wrapper.cc b/ui/views/accessibility/ax_window_obj_wrapper.cc
index de0dcf2ec4b0f3776088ea349ddaa13ce506b963..124ae78710d9f1a3f5674bb67f39fd0455dab605 100644
--- a/ui/views/accessibility/ax_window_obj_wrapper.cc
+++ b/ui/views/accessibility/ax_window_obj_wrapper.cc
@@ -4,6 +4,8 @@
#include "ui/views/accessibility/ax_window_obj_wrapper.h"
+#include <stddef.h>
+
#include "base/strings/utf_string_conversions.h"
#include "ui/accessibility/ax_node_data.h"
#include "ui/aura/window.h"
@@ -58,7 +60,7 @@ void AXWindowObjWrapper::Serialize(ui::AXNodeData* out_node_data) {
}
}
-int32 AXWindowObjWrapper::GetID() {
+int32_t AXWindowObjWrapper::GetID() {
return AXAuraObjCache::GetInstance()->GetID(window_);
}

Powered by Google App Engine
This is Rietveld 408576698