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

Unified Diff: chrome/browser/spellchecker/spellcheck_message_filter_platform_mac_unittest.cc

Issue 1545223002: Switch to standard integer types in chrome/browser/, part 4 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix 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: chrome/browser/spellchecker/spellcheck_message_filter_platform_mac_unittest.cc
diff --git a/chrome/browser/spellchecker/spellcheck_message_filter_platform_mac_unittest.cc b/chrome/browser/spellchecker/spellcheck_message_filter_platform_mac_unittest.cc
index 26897c0ee6de0b026655349b3c2dcb098bc1973c..07de381dcf74acab0d33d00f66b87c5dc5de35f6 100644
--- a/chrome/browser/spellchecker/spellcheck_message_filter_platform_mac_unittest.cc
+++ b/chrome/browser/spellchecker/spellcheck_message_filter_platform_mac_unittest.cc
@@ -4,6 +4,10 @@
#include "chrome/browser/spellchecker/spellcheck_message_filter_platform.h"
+#include <stddef.h>
+#include <stdint.h>
+
+#include "base/macros.h"
#include "base/strings/utf_string_conversions.h"
#include "chrome/common/spellcheck_messages.h"
#include "chrome/common/spellcheck_result.h"
@@ -45,8 +49,8 @@ TEST(SpellcheckMessageFilterPlatformMacTest, CombineResults) {
}
TEST(SpellCheckMessageFilterPlatformMacTest, TestOverrideThread) {
- static const uint32 kSpellcheckMessages[] = {
- SpellCheckHostMsg_RequestTextCheck::ID,
+ static const uint32_t kSpellcheckMessages[] = {
+ SpellCheckHostMsg_RequestTextCheck::ID,
};
scoped_refptr<SpellCheckMessageFilterPlatform> filter(
new SpellCheckMessageFilterPlatform(0));

Powered by Google App Engine
This is Rietveld 408576698