| Index: content/browser/fileapi/file_system_dir_url_request_job_unittest.cc
|
| diff --git a/content/browser/fileapi/file_system_dir_url_request_job_unittest.cc b/content/browser/fileapi/file_system_dir_url_request_job_unittest.cc
|
| index 4a011b1cc837d29c9a3521c5dced5957f3b2473d..356988accbf0d0ff56739d203eb706863f6634cf 100644
|
| --- a/content/browser/fileapi/file_system_dir_url_request_job_unittest.cc
|
| +++ b/content/browser/fileapi/file_system_dir_url_request_job_unittest.cc
|
| @@ -83,20 +83,20 @@ class FileSystemDirURLRequestJobFactory : public net::URLRequestJobFactory {
|
| virtual net::URLRequestJob* MaybeCreateJobWithProtocolHandler(
|
| const std::string& scheme,
|
| net::URLRequest* request,
|
| - net::NetworkDelegate* network_delegate) const OVERRIDE {
|
| + net::NetworkDelegate* network_delegate) const override {
|
| return new storage::FileSystemDirURLRequestJob(
|
| request, network_delegate, storage_domain_, file_system_context_);
|
| }
|
|
|
| - virtual bool IsHandledProtocol(const std::string& scheme) const OVERRIDE {
|
| + virtual bool IsHandledProtocol(const std::string& scheme) const override {
|
| return true;
|
| }
|
|
|
| - virtual bool IsHandledURL(const GURL& url) const OVERRIDE {
|
| + virtual bool IsHandledURL(const GURL& url) const override {
|
| return true;
|
| }
|
|
|
| - virtual bool IsSafeRedirectTarget(const GURL& location) const OVERRIDE {
|
| + virtual bool IsSafeRedirectTarget(const GURL& location) const override {
|
| return false;
|
| }
|
|
|
| @@ -114,7 +114,7 @@ class FileSystemDirURLRequestJobTest : public testing::Test {
|
| : weak_factory_(this) {
|
| }
|
|
|
| - virtual void SetUp() OVERRIDE {
|
| + virtual void SetUp() override {
|
| ASSERT_TRUE(temp_dir_.CreateUniqueTempDir());
|
|
|
| special_storage_policy_ = new MockSpecialStoragePolicy;
|
| @@ -130,7 +130,7 @@ class FileSystemDirURLRequestJobTest : public testing::Test {
|
| base::RunLoop().RunUntilIdle();
|
| }
|
|
|
| - virtual void TearDown() OVERRIDE {
|
| + virtual void TearDown() override {
|
| // NOTE: order matters, request must die before delegate
|
| request_.reset(NULL);
|
| delegate_.reset(NULL);
|
|
|