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

Unified Diff: media/base/ranges.h

Issue 539203002: Make index parameters in Ranges method match the type returned by size() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/ranges.h
diff --git a/media/base/ranges.h b/media/base/ranges.h
index 917f30e141eee1c6ba53d33f62b922c70c85f6f6..e350a49cbcf7fd43cdc68eb63a1cdde3f889e137 100644
--- a/media/base/ranges.h
+++ b/media/base/ranges.h
@@ -32,8 +32,8 @@ class Ranges {
size_t size() const;
// Return the "i"'th range's start & end (0-based).
- T start(int i) const;
- T end(int i) const;
+ T start(size_t i) const;
+ T end(size_t i) const;
// Clear all ranges.
void clear();
@@ -119,12 +119,12 @@ size_t Ranges<T>::size() const {
}
template<class T>
-T Ranges<T>::start(int i) const {
+T Ranges<T>::start(size_t i) const {
return ranges_[i].first;
}
template<class T>
-T Ranges<T>::end(int i) const {
+T Ranges<T>::end(size_t i) const {
return ranges_[i].second;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698