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

Unified Diff: media/base/data_source.cc

Issue 9854031: Replace size_t with int in a few media classes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 9 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 | « media/base/data_source.h ('k') | media/base/mock_filters.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/data_source.cc
diff --git a/media/base/data_source.cc b/media/base/data_source.cc
index f310af8580c1998b8b3164274e3a4fcf8a4c24fe..dfebf5afe81e09c54bb301ba09d6b10378b7f98f 100644
--- a/media/base/data_source.cc
+++ b/media/base/data_source.cc
@@ -9,7 +9,7 @@
namespace media {
// static
-const size_t DataSource::kReadError = static_cast<size_t>(-1);
+const int DataSource::kReadError = -1;
DataSourceHost::~DataSourceHost() {}
« no previous file with comments | « media/base/data_source.h ('k') | media/base/mock_filters.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698