| Index: webkit/fileapi/copy_or_move_file_validator_unittest.cc
|
| diff --git a/webkit/fileapi/copy_or_move_file_validator_unittest.cc b/webkit/fileapi/copy_or_move_file_validator_unittest.cc
|
| index d33ad6ade7e898acd945233da0333baa04e5cda5..505b2aa7e529900eee4e596fb7ffd76b1aafc9c2 100644
|
| --- a/webkit/fileapi/copy_or_move_file_validator_unittest.cc
|
| +++ b/webkit/fileapi/copy_or_move_file_validator_unittest.cc
|
| @@ -178,7 +178,7 @@ class TestCopyOrMoveFileValidatorFactory
|
|
|
| virtual CopyOrMoveFileValidator* CreateCopyOrMoveFileValidator(
|
| const FileSystemURL& /*src_url*/,
|
| - const base::FilePath& /*platform_path*/) {
|
| + const base::FilePath& /*platform_path*/) OVERRIDE {
|
| return new TestCopyOrMoveFileValidator(all_valid_);
|
| }
|
|
|
| @@ -191,7 +191,8 @@ class TestCopyOrMoveFileValidatorFactory
|
| }
|
| virtual ~TestCopyOrMoveFileValidator() {}
|
|
|
| - virtual void StartValidation(const ResultCallback& result_callback) {
|
| + virtual void StartValidation(
|
| + const ResultCallback& result_callback) OVERRIDE {
|
| // Post the result since a real validator must do work asynchronously.
|
| MessageLoop::current()->PostTask(FROM_HERE, base::Bind(result_callback,
|
| result_));
|
|
|