diff options
Diffstat (limited to 'content')
-rw-r--r-- | content/common/notification_service.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/common/notification_service.cc b/content/common/notification_service.cc index 650a5fa..2089d9f 100644 --- a/content/common/notification_service.cc +++ b/content/common/notification_service.cc @@ -119,7 +119,7 @@ NotificationService::~NotificationService() { lazy_tls_ptr.Pointer()->Set(NULL); #ifndef NDEBUG - for (size_t i = 0; i < observer_counts_.size(); i++) { + for (int i = 0; i < static_cast<int>(observer_counts_.size()); i++) { if (observer_counts_[i] > 0) { // This may not be completely fixable -- see // http://code.google.com/p/chromium/issues/detail?id=11010 . |