| Index: chrome/browser/ui/chrome_select_file_policy_unittest.cc
|
| diff --git a/chrome/browser/ui/chrome_select_file_policy_unittest.cc b/chrome/browser/ui/chrome_select_file_policy_unittest.cc
|
| index 1c739b5a871721601d56fa9ed5b78af171cb3067..f6d674d2dc5b503afe60556c70245d1daf049a7b 100644
|
| --- a/chrome/browser/ui/chrome_select_file_policy_unittest.cc
|
| +++ b/chrome/browser/ui/chrome_select_file_policy_unittest.cc
|
| @@ -63,15 +63,15 @@ class FileSelectionUser : public ui::SelectFileDialog::Listener {
|
|
|
| // ui::SelectFileDialog::Listener implementation.
|
| virtual void FileSelected(const base::FilePath& path,
|
| - int index, void* params) OVERRIDE {
|
| + int index, void* params) override {
|
| ASSERT_FALSE(file_selection_initialisation_in_progress);
|
| }
|
| virtual void MultiFilesSelected(
|
| const std::vector<base::FilePath>& files,
|
| - void* params) OVERRIDE {
|
| + void* params) override {
|
| ASSERT_FALSE(file_selection_initialisation_in_progress);
|
| }
|
| - virtual void FileSelectionCanceled(void* params) OVERRIDE {
|
| + virtual void FileSelectionCanceled(void* params) override {
|
| ASSERT_FALSE(file_selection_initialisation_in_progress);
|
| }
|
|
|
|
|