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

Unified Diff: Source/modules/speech/SpeechRecognitionResult.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
Index: Source/modules/speech/SpeechRecognitionResult.cpp
diff --git a/Source/modules/speech/SpeechRecognitionResult.cpp b/Source/modules/speech/SpeechRecognitionResult.cpp
index ce592a58db0bc2f214582d2d4e501fc7c46434fe..e27c0aba865a7cfc5d81e90495c9f65d840b22aa 100644
--- a/Source/modules/speech/SpeechRecognitionResult.cpp
+++ b/Source/modules/speech/SpeechRecognitionResult.cpp
@@ -34,7 +34,7 @@ SpeechRecognitionResult* SpeechRecognitionResult::create(const HeapVector<Member
return new SpeechRecognitionResult(alternatives, final);
}
-SpeechRecognitionAlternative* SpeechRecognitionResult::item(unsigned long index)
+SpeechRecognitionAlternative* SpeechRecognitionResult::item(unsigned index)
{
if (index >= m_alternatives.size())
return 0;
« no previous file with comments | « Source/modules/speech/SpeechRecognitionResult.h ('k') | Source/modules/speech/SpeechRecognitionResultList.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698