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

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

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
Index: Source/modules/speech/SpeechRecognitionResultList.h
diff --git a/Source/modules/speech/SpeechRecognitionResultList.h b/Source/modules/speech/SpeechRecognitionResultList.h
index 24ca14720cb88ef0058db9c62b2c08bc3f3842e2..754aa248c7293667d62a1b0d9676c4bd5753c0b4 100644
--- a/Source/modules/speech/SpeechRecognitionResultList.h
+++ b/Source/modules/speech/SpeechRecognitionResultList.h
@@ -37,8 +37,8 @@ class SpeechRecognitionResultList : public ScriptWrappable, public RefCounted<Sp
public:
static PassRefPtr<SpeechRecognitionResultList> create(const Vector<RefPtr<SpeechRecognitionResult> >&);
- unsigned long length() { return m_results.size(); }
- SpeechRecognitionResult* item(unsigned long index);
+ unsigned length() { return m_results.size(); }
+ SpeechRecognitionResult* item(unsigned index);
private:
explicit SpeechRecognitionResultList(const Vector<RefPtr<SpeechRecognitionResult> >&);
« no previous file with comments | « Source/modules/speech/SpeechRecognitionResult.h ('k') | Source/modules/speech/SpeechRecognitionResultList.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698