Index: chrome/renderer/spellchecker/spellcheck_provider.cc |
diff --git a/chrome/renderer/spellchecker/spellcheck_provider.cc b/chrome/renderer/spellchecker/spellcheck_provider.cc |
index 0d7705d0f8f194d4d06be15d9ec084ec644ba0f9..576460e8dbe025b12abf2170c26ccb7e76a7883e 100644 |
--- a/chrome/renderer/spellchecker/spellcheck_provider.cc |
+++ b/chrome/renderer/spellchecker/spellcheck_provider.cc |
@@ -163,7 +163,7 @@ void SpellCheckProvider::checkTextOfParagraph( |
void SpellCheckProvider::requestCheckingOfText( |
const WebString& text, |
- const WebVector<uint32>& markers, |
+ const WebVector<uint32_t>& markers, |
const WebVector<unsigned>& marker_offsets, |
WebTextCheckingCompletion* completion) { |
std::vector<SpellCheckMarker> spellcheck_markers; |
@@ -234,7 +234,7 @@ bool SpellCheckProvider::HasWordCharacters( |
const base::char16* data = text.data(); |
int length = text.length(); |
while (index < length) { |
- uint32 code = 0; |
+ uint32_t code = 0; |
U16_NEXT(data, index, length, code); |
UErrorCode error = U_ZERO_ERROR; |
if (uscript_getScript(code, &error) != USCRIPT_COMMON) |