| Index: components/sync_driver/about_sync_util.cc
 | 
| diff --git a/components/sync_driver/about_sync_util.cc b/components/sync_driver/about_sync_util.cc
 | 
| index 7842091ed881cdd3b5fd4daf16ff16b24d2e58a5..f9acf0f31330cc178ff9113100a00f53f0fa3227 100644
 | 
| --- a/components/sync_driver/about_sync_util.cc
 | 
| +++ b/components/sync_driver/about_sync_util.cc
 | 
| @@ -357,7 +357,7 @@ scoped_ptr<base::DictionaryValue> ConstructAboutInformation(
 | 
|  
 | 
|    if (!service) {
 | 
|      summary_string.SetValue("Sync service does not exist");
 | 
| -    return about_info.Pass();
 | 
| +    return about_info;
 | 
|    }
 | 
|  
 | 
|    syncer::SyncStatus full_status;
 | 
| @@ -525,7 +525,7 @@ scoped_ptr<base::DictionaryValue> ConstructAboutInformation(
 | 
|  
 | 
|    about_info->Set("type_status", service->GetTypeStatusMap());
 | 
|  
 | 
| -  return about_info.Pass();
 | 
| +  return about_info;
 | 
|  }
 | 
|  
 | 
|  }  // namespace sync_ui_util
 | 
| 
 |