| Index: chrome/browser/cocoa/import_settings_dialog.mm
|
| diff --git a/chrome/browser/cocoa/import_settings_dialog.mm b/chrome/browser/cocoa/import_settings_dialog.mm
|
| index a11244aef56d15dbeafb2497ce960d86ba9a9a53..d18dec8995d8ff0ad85204f1e79dd581c5d6fca9 100644
|
| --- a/chrome/browser/cocoa/import_settings_dialog.mm
|
| +++ b/chrome/browser/cocoa/import_settings_dialog.mm
|
| @@ -174,9 +174,7 @@ bool importSettingsDialogVisible = false;
|
| const importer::ProfileInfo& sourceProfile =
|
| importerList_.get()->GetSourceProfileInfoAt([self sourceBrowserIndex]);
|
| uint16 items = sourceProfile.services_supported;
|
| - // ProfileInfo.services_supported is a uint16 while the call to
|
| - // StartImportingWithUI requires an int16.
|
| - int16 servicesToImport = static_cast<int16>(items & [self servicesToImport]);
|
| + uint16 servicesToImport = items & [self servicesToImport];
|
| if (servicesToImport) {
|
| if (profile_) {
|
| ImporterHost* importerHost = new ExternalProcessImporterHost;
|
|
|