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

Unified Diff: content/browser/accessibility/accessibility_tree_formatter_win.cc

Issue 1549113002: Switch to standard integer types in content/browser/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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: content/browser/accessibility/accessibility_tree_formatter_win.cc
diff --git a/content/browser/accessibility/accessibility_tree_formatter_win.cc b/content/browser/accessibility/accessibility_tree_formatter_win.cc
index 111fe39362207dfeb83d3426164ce65f166fe135..cbece3a25532a473ce62ad22089beb939cec7d58 100644
--- a/content/browser/accessibility/accessibility_tree_formatter_win.cc
+++ b/content/browser/accessibility/accessibility_tree_formatter_win.cc
@@ -5,6 +5,8 @@
#include "content/browser/accessibility/accessibility_tree_formatter.h"
#include <oleacc.h>
+#include <stddef.h>
+#include <stdint.h>
#include <string>
@@ -174,7 +176,7 @@ void AccessibilityTreeFormatterWin::AddProperties(
temp_bstr.Reset();
std::vector<base::string16> state_strings;
- int32 ia_state = ax_object->ia_state();
+ int32_t ia_state = ax_object->ia_state();
// Avoid flakiness: these states depend on whether the window is focused
// and the position of the mouse cursor.

Powered by Google App Engine
This is Rietveld 408576698