| Index: chrome/browser/sync/glue/data_type_manager_impl2.cc
|
| diff --git a/chrome/browser/sync/glue/data_type_manager_impl2.cc b/chrome/browser/sync/glue/data_type_manager_impl2.cc
|
| index b4276d115e0211d02207f9448d49061d5060c5c1..af816fb2818e9188051ac62eb30db96b38d883b1 100644
|
| --- a/chrome/browser/sync/glue/data_type_manager_impl2.cc
|
| +++ b/chrome/browser/sync/glue/data_type_manager_impl2.cc
|
| @@ -186,7 +186,7 @@ void DataTypeManagerImpl2::DownloadReady() {
|
| void DataTypeManagerImpl2::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(
|
|
|