| 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.
|
|
|