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

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

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/SpeechRecognitionResultList.h
diff --git a/Source/modules/speech/SpeechRecognitionResultList.h b/Source/modules/speech/SpeechRecognitionResultList.h
index 39b99f30e79982ac0abb7d9c942ea18faf17cc53..63732b7c38c0cff970bd800eeb24975e8716e3f0 100644
--- a/Source/modules/speech/SpeechRecognitionResultList.h
+++ b/Source/modules/speech/SpeechRecognitionResultList.h
@@ -37,8 +37,8 @@ class SpeechRecognitionResultList : public GarbageCollected<SpeechRecognitionRes
public:
static SpeechRecognitionResultList* create(const HeapVector<Member<SpeechRecognitionResult> >&);
- unsigned long length() { return m_results.size(); }
- SpeechRecognitionResult* item(unsigned long index);
+ unsigned length() { return m_results.size(); }
+ SpeechRecognitionResult* item(unsigned index);
void trace(Visitor*);
« no previous file with comments | « Source/modules/speech/SpeechRecognitionResult.cpp ('k') | Source/modules/speech/SpeechRecognitionResultList.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698