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

Unified Diff: Source/modules/speech/SpeechRecognitionResultList.cpp

Issue 717413002: Use "unsigned" rather than "unsigned long" for C++ code interacting with WebIDL's "unsigned long". (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 1 month 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 | « Source/modules/speech/SpeechRecognitionResultList.h ('k') | Source/modules/speech/SpeechSynthesisEvent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/speech/SpeechRecognitionResultList.cpp
diff --git a/Source/modules/speech/SpeechRecognitionResultList.cpp b/Source/modules/speech/SpeechRecognitionResultList.cpp
index 7a08fb8ebb165c0014d005c541d26dbb83971dfe..6373c0d88d8114e2f5734e5cfe884eb4a541dc50 100644
--- a/Source/modules/speech/SpeechRecognitionResultList.cpp
+++ b/Source/modules/speech/SpeechRecognitionResultList.cpp
@@ -34,7 +34,7 @@ SpeechRecognitionResultList* SpeechRecognitionResultList::create(const HeapVecto
return new SpeechRecognitionResultList(results);
}
-SpeechRecognitionResult* SpeechRecognitionResultList::item(unsigned long index)
+SpeechRecognitionResult* SpeechRecognitionResultList::item(unsigned index)
{
if (index >= m_results.size())
return 0;
« no previous file with comments | « Source/modules/speech/SpeechRecognitionResultList.h ('k') | Source/modules/speech/SpeechSynthesisEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698