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

Unified Diff: content/browser/accessibility/accessibility_event_recorder_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
« no previous file with comments | « no previous file | content/browser/accessibility/accessibility_ipc_error_browsertest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/accessibility/accessibility_event_recorder_win.cc
diff --git a/content/browser/accessibility/accessibility_event_recorder_win.cc b/content/browser/accessibility/accessibility_event_recorder_win.cc
index b90fc8c23ea1ff16350399c9f7d8dec69de6c954..fa767494fb4d2eee3fa0729fb40d29147ef901db 100644
--- a/content/browser/accessibility/accessibility_event_recorder_win.cc
+++ b/content/browser/accessibility/accessibility_event_recorder_win.cc
@@ -5,6 +5,7 @@
#include "content/browser/accessibility/accessibility_event_recorder.h"
#include <oleacc.h>
+#include <stdint.h>
#include <string>
@@ -65,7 +66,7 @@ std::string BstrToUTF8(BSTR bstr) {
return base::UTF16ToUTF8(str16);
}
-std::string AccessibilityEventToStringUTF8(int32 event_id) {
+std::string AccessibilityEventToStringUTF8(int32_t event_id) {
return base::UTF16ToUTF8(AccessibilityEventToString(event_id));
}
« no previous file with comments | « no previous file | content/browser/accessibility/accessibility_ipc_error_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698