Index: chrome/browser/sync/glue/data_type_manager_impl.cc |
diff --git a/chrome/browser/sync/glue/data_type_manager_impl.cc b/chrome/browser/sync/glue/data_type_manager_impl.cc |
index 2d06f80164e7e2699164f73a1e4ea1ffc2f2c378..bb89c6e1504cdf4e00ccb21110568d5851ecd88a 100644 |
--- a/chrome/browser/sync/glue/data_type_manager_impl.cc |
+++ b/chrome/browser/sync/glue/data_type_manager_impl.cc |
@@ -226,7 +226,7 @@ void DataTypeManagerImpl::DownloadReady() { |
void DataTypeManagerImpl::StartNextType() { |
// If there are any data types left to start, start the one at the |
// front of the list. |
- if (needs_start_.size() > 0) { |
+ if (!needs_start_.empty()) { |
current_dtc_ = needs_start_[0]; |
VLOG(1) << "Starting " << current_dtc_->name(); |
current_dtc_->Start( |