| Index: ui/shell_dialogs/select_file_dialog.cc
|
| diff --git a/ui/shell_dialogs/select_file_dialog.cc b/ui/shell_dialogs/select_file_dialog.cc
|
| index 427af7d2407d4ccc7b9dd8e158d4f22f89e7f78b..8cdf5db37809188de84e2eff030dbada62600175 100644
|
| --- a/ui/shell_dialogs/select_file_dialog.cc
|
| +++ b/ui/shell_dialogs/select_file_dialog.cc
|
| @@ -117,9 +117,9 @@ void SelectFileDialog::SelectFile(
|
| // Inform the listener that no file was selected.
|
| // Post a task rather than calling FileSelectionCanceled directly to ensure
|
| // that the listener is called asynchronously.
|
| - MessageLoop::current()->PostTask(
|
| - FROM_HERE, base::Bind(&SelectFileDialog::CancelFileSelection, this,
|
| - params));
|
| + base::MessageLoop::current()->PostTask(
|
| + FROM_HERE,
|
| + base::Bind(&SelectFileDialog::CancelFileSelection, this, params));
|
| return;
|
| }
|
|
|
|
|