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

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

Issue 21735005: Use "int" instead of "long" for bindings where the WebIDL uses "long". (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 months 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 7327bf7f7f3707ac484af9e323ddcafbeb8a5e96..d7df8465000b470cf3a1c07050cdeb2b2df0cfea 100644
--- a/Source/modules/speech/SpeechRecognitionResultList.cpp
+++ b/Source/modules/speech/SpeechRecognitionResultList.cpp
@@ -34,7 +34,7 @@ PassRefPtr<SpeechRecognitionResultList> SpeechRecognitionResultList::create(cons
return adoptRef(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