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

Unified Diff: Source/modules/speech/SpeechGrammarList.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
« no previous file with comments | « no previous file | Source/modules/speech/SpeechGrammarList.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/speech/SpeechGrammarList.h
diff --git a/Source/modules/speech/SpeechGrammarList.h b/Source/modules/speech/SpeechGrammarList.h
index 01632099b5f746860c967c5b18a0d8a26bcb34b4..97da574a93569014f8edfd8a355a79c1d15554c2 100644
--- a/Source/modules/speech/SpeechGrammarList.h
+++ b/Source/modules/speech/SpeechGrammarList.h
@@ -39,8 +39,8 @@ class SpeechGrammarList final : public GarbageCollected<SpeechGrammarList>, publ
public:
static SpeechGrammarList* create();
- unsigned long length() const { return m_grammars.size(); }
- SpeechGrammar* item(unsigned long) const;
+ unsigned length() const { return m_grammars.size(); }
+ SpeechGrammar* item(unsigned) const;
void addFromUri(ExecutionContext*, const String& src, double weight = 1.0);
void addFromString(const String&, double weight = 1.0);
« no previous file with comments | « no previous file | Source/modules/speech/SpeechGrammarList.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698